/* ============================================================
   ALERTLY.PL — Design System
   ============================================================ */

:root {
  --bg0:      #050507;
  --bg1:      #0b0c10;
  --bg2:      #111318;
  --card:     rgba(255,255,255,.06);
  --card2:    rgba(255,255,255,.10);
  --stroke:   rgba(255,255,255,.14);
  --txt:      rgba(255,255,255,.90);
  --muted:    rgba(255,255,255,.65);
  --accent:   #fe2e1c;
  --accent2:  #c71f10;
  --shadow:   0 18px 60px rgba(0,0,0,.55);
  --radius:   20px;
  --radius-sm:12px;
}

/* ============================================================
   BASE
   ============================================================ */

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background:
    radial-gradient(1000px 600px at 50% 10%, rgba(254,46,28,.22), transparent 55%),
    radial-gradient(800px 500px at 20% 85%,  rgba(254,46,28,.12), transparent 55%),
    linear-gradient(180deg, var(--bg0), var(--bg1));
  background-attachment: fixed;
  color: var(--txt);
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }
img { max-width: 100%; height: auto; }

/* ============================================================
   NAVBAR
   ============================================================ */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(5,5,7,.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--stroke);
  transition: background .3s;
}

.site-nav .navbar-brand img {
  height: 3rem;
  width: auto;
}

.site-nav .nav-link {
  color: var(--muted) !important;
  font-size: .875rem;
  font-weight: 500;
  padding: .45rem .7rem !important;
  border-radius: var(--radius-sm);
  transition: color .2s, background .2s;
}

.site-nav .nav-link:hover {
  color: var(--txt) !important;
  background: var(--card2);
}

.site-nav .nav-link.active {
  color: var(--accent) !important;
  background: rgba(254,46,28,.08);
}

.site-nav .nav-phone {
  display: flex;
  align-items: center;
  gap: .4rem;
  color: var(--txt) !important;
  font-weight: 700;
  font-size: .875rem;
  white-space: nowrap;
  padding: .4rem .8rem;
  background: rgba(254,46,28,.1);
  border: 1px solid rgba(254,46,28,.25);
  border-radius: var(--radius-sm);
  transition: background .2s;
}

.site-nav .nav-phone i { color: var(--accent); }
.site-nav .nav-phone:hover { background: rgba(254,46,28,.18) !important; color: var(--txt) !important; }

.navbar-toggler {
  border: 1px solid var(--stroke) !important;
  padding: .3rem .55rem;
  background: var(--card) !important;
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(5,5,7,.97);
    border-top: 1px solid var(--stroke);
    padding: .75rem 0 1rem;
    margin-top: .5rem;
  }
  .site-nav .nav-phone { margin: .5rem 0 0; }
}

/* ============================================================
   HERO (index.html)
   ============================================================ */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 6rem 0 4rem;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 900px 600px at 50% 0%, rgba(254,46,28,.2), transparent 60%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(254,46,28,.10);
  border: 1px solid rgba(254,46,28,.35);
  color: var(--accent);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: .35rem .9rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.025em;
  margin-bottom: 1.25rem;
}

.hero h1 .accent { color: var(--accent); }

.hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-bottom: 2.5rem;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 100px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--muted);
  padding: .3rem .8rem;
}

.hero-badge i { color: var(--accent); font-size: .8rem; }

/* Hero shield */
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-shield-wrap {
  position: relative;
  width: 300px;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-shield-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(254,46,28,.2);
  animation: pulse-ring 3.5s ease-in-out infinite;
}

.hero-shield-ring:nth-child(1) { width: 100%; height: 100%; animation-delay: 0s; }
.hero-shield-ring:nth-child(2) { width: 75%;  height: 75%;  animation-delay: .5s; opacity: .7; }
.hero-shield-ring:nth-child(3) { width: 50%;  height: 50%;  animation-delay: 1s;  opacity: .5; }

.hero-shield-icon {
  position: relative;
  font-size: 7rem;
  color: var(--accent);
  filter: drop-shadow(0 0 40px rgba(254,46,28,.55));
  animation: float 4s ease-in-out infinite;
}

@keyframes pulse-ring {
  0%,100% { transform: scale(1);    opacity: .4; }
  50%      { transform: scale(1.05); opacity: .9; }
}

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

/* ============================================================
   STAT BAR
   ============================================================ */

.stat-bar {
  background: rgba(0,0,0,.35);
  border-top: 1px solid var(--stroke);
  border-bottom: 1px solid var(--stroke);
  backdrop-filter: blur(10px);
  padding: 1.5rem 0;
}

.stat-item { text-align: center; padding: .5rem 1rem; }

.stat-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: .78rem;
  color: var(--muted);
  font-weight: 500;
  margin-top: .3rem;
  display: block;
}

/* ============================================================
   SECTIONS
   ============================================================ */

.section       { padding: 5rem 0; }
.section-sm    { padding: 3rem 0; }
.section-dark  { background: rgba(0,0,0,.25); }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  color: var(--accent);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .65rem;
}

.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
}

.section-title .accent { color: var(--accent); }

.section-sub {
  font-size: .97rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 560px;
}

/* ============================================================
   GLASS CARDS
   ============================================================ */

.glass {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.glass-header {
  background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.04));
  border-bottom: 1px solid var(--stroke);
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
}

.card-alertly {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 1.75rem;
  transition: border-color .25s, transform .25s, box-shadow .25s;
  height: 100%;
}

.card-alertly:hover {
  border-color: rgba(254,46,28,.4);
  transform: translateY(-5px);
  box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(254,46,28,.12);
}

.card-alertly .card-icon {
  width: 52px;
  height: 52px;
  background: rgba(254,46,28,.12);
  border: 1px solid rgba(254,46,28,.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 1.1rem;
}

.card-alertly .card-title  { font-size: 1.05rem; font-weight: 700; margin-bottom: .5rem; }
.card-alertly .card-text   { font-size: .88rem;  color: var(--muted); line-height: 1.65; margin: 0; }

/* ============================================================
   SERVICE CARDS (uslugi.html)
   ============================================================ */

.service-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s, transform .25s;
}

.service-card:hover {
  border-color: rgba(254,46,28,.4);
  transform: translateY(-5px);
}

.service-card-header {
  background: linear-gradient(135deg, rgba(254,46,28,.14), rgba(254,46,28,.04));
  padding: 1.75rem 2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid var(--stroke);
}

.service-card-icon {
  width: 58px;
  height: 58px;
  background: rgba(254,46,28,.14);
  border: 1px solid rgba(254,46,28,.3);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  color: var(--accent);
  flex-shrink: 0;
}

.service-card-body { padding: 1.75rem 2rem 2rem; }

.service-card-body ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 1.5rem;
}

.service-card-body ul li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .88rem;
  color: var(--muted);
  padding: .3rem 0;
  line-height: 1.5;
}

.service-card-body ul li i {
  color: var(--accent);
  font-size: .85rem;
  flex-shrink: 0;
  margin-top: .15rem;
}

.service-price { font-size: .85rem; color: var(--muted); }
.service-price strong { color: var(--accent); font-size: 1.05rem; }

/* ============================================================
   BRANDS
   ============================================================ */

.brands-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.brand-badge {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  padding: .65rem 1.4rem;
  font-size: .85rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .06em;
  transition: border-color .2s, color .2s;
}

.brand-badge:hover {
  border-color: rgba(254,46,28,.4);
  color: var(--txt);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */

.testimonial-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 1.75rem;
}

.testimonial-stars { color: var(--accent); font-size: .9rem; margin-bottom: .75rem; letter-spacing: .1em; }
.testimonial-text  { font-size: .9rem; color: var(--muted); line-height: 1.7; font-style: italic; margin-bottom: 1.25rem; }

.testimonial-author { display: flex; align-items: center; gap: .75rem; }

.testimonial-avatar {
  width: 42px;
  height: 42px;
  background: rgba(254,46,28,.14);
  border: 1px solid rgba(254,46,28,.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .95rem;
  font-weight: 800;
  color: var(--accent);
  flex-shrink: 0;
}

.testimonial-name { font-weight: 700; font-size: .9rem; }
.testimonial-loc  { font-size: .75rem; color: var(--muted); }

/* ============================================================
   CITIES
   ============================================================ */

.city-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: 100px;
  padding: .4rem 1rem;
  font-size: .82rem;
  color: var(--muted);
  transition: border-color .2s, color .2s;
}

.city-tag i { color: var(--accent); font-size: .8rem; }
.city-tag:hover { border-color: rgba(254,46,28,.35); color: var(--txt); }

/* ============================================================
   CTA BANNER
   ============================================================ */

.cta-banner {
  background: linear-gradient(135deg, rgba(254,46,28,.16) 0%, rgba(254,46,28,.05) 100%);
  border: 1px solid rgba(254,46,28,.25);
  border-radius: var(--radius);
  padding: 3.5rem 2rem;
  text-align: center;
}

.cta-banner h2 { font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 800; margin-bottom: .75rem; }
.cta-banner p  { color: var(--muted); margin-bottom: 1.75rem; font-size: 1rem; }

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-accent {
  background: var(--accent);
  color: #0b0c10 !important;
  font-weight: 700;
  border: none;
  border-radius: var(--radius-sm);
  padding: .65rem 1.5rem;
  font-size: .9rem;
  transition: background .2s, transform .15s, box-shadow .2s;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  cursor: pointer;
}

.btn-accent:hover {
  background: #ff3b2a;
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(254,46,28,.35);
}

.btn-accent:active { transform: translateY(0); }
.btn-accent.btn-lg { padding: .85rem 2rem; font-size: 1rem; }

.btn-outline-light {
  border-radius: var(--radius-sm) !important;
  padding: .65rem 1.5rem !important;
  font-size: .9rem !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: .45rem !important;
}

.btn-outline-light.btn-lg { padding: .85rem 2rem !important; font-size: 1rem !important; }

/* ============================================================
   FORM
   ============================================================ */

.form-control, .form-select {
  background: rgba(255,255,255,.06) !important;
  border: 1px solid var(--stroke) !important;
  border-radius: var(--radius-sm) !important;
  color: var(--txt) !important;
  font-size: .9rem;
  padding: .7rem 1rem;
  transition: border-color .2s, box-shadow .2s;
}

.form-control::placeholder { color: rgba(255,255,255,.35) !important; }
.form-select option         { background: #111318; color: var(--txt); }

.form-control:focus, .form-select:focus {
  border-color: rgba(254,46,28,.6) !important;
  box-shadow: 0 0 0 3px rgba(254,46,28,.14) !important;
  background: rgba(255,255,255,.08) !important;
  outline: none;
}

.form-label {
  font-size: .8rem;
  font-weight: 600;
  color: var(--muted);
  margin-bottom: .4rem;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.was-validated .form-control:invalid,
.form-control.is-invalid { border-color: rgba(254,46,28,.8) !important; }

.was-validated .form-control:valid,
.form-control.is-valid   { border-color: rgba(40,200,100,.45) !important; }

.invalid-feedback { color: var(--accent) !important; font-size: .78rem; }

textarea.form-control { resize: vertical; min-height: 120px; }

/* Form status */
#form-status {
  display: none;
  border-radius: var(--radius-sm);
  padding: .85rem 1.1rem;
  font-size: .88rem;
  font-weight: 500;
  margin-top: 1rem;
}

#form-status.success {
  display: block;
  background: rgba(40,200,100,.10);
  border: 1px solid rgba(40,200,100,.3);
  color: #5DF09A;
}

#form-status.error {
  display: block;
  background: rgba(254,46,28,.10);
  border: 1px solid rgba(254,46,28,.3);
  color: var(--accent);
}

/* ============================================================
   WIZARD FORM (kontakt.html)
   ============================================================ */

.wizard-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.wizard-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  flex: 1;
  max-width: 160px;
}

.wizard-step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--card);
  border: 2px solid var(--stroke);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: .88rem;
  color: var(--muted);
  transition: all .3s;
  position: relative;
  z-index: 1;
}

.wizard-step-label {
  font-size: .7rem;
  color: var(--muted);
  font-weight: 500;
  text-align: center;
  transition: color .3s;
  line-height: 1.3;
}

.wizard-step.active .wizard-step-num {
  background: var(--accent);
  border-color: var(--accent);
  color: #0b0c10;
  box-shadow: 0 0 0 5px rgba(254,46,28,.18);
}

.wizard-step.active .wizard-step-label { color: var(--txt); font-weight: 600; }

.wizard-step.done .wizard-step-num {
  background: rgba(40,200,100,.12);
  border-color: rgba(40,200,100,.5);
  color: #28c864;
}

.wizard-step.done .wizard-step-label { color: #28c864; }

.wizard-connector {
  height: 2px;
  flex: 1;
  background: var(--stroke);
  margin-top: 1.35rem;
  margin-bottom: 0;
  transition: background .3s;
  max-width: 80px;
}

.wizard-connector.done { background: rgba(40,200,100,.4); }

.wizard-panel { display: none; }
.wizard-panel.active { display: block; animation: fadeIn .3s ease; }

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

.wizard-option-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: .75rem;
  margin: .75rem 0 1.5rem;
}

.wizard-option { position: relative; }

.wizard-option input[type="radio"],
.wizard-option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.wizard-option label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .55rem;
  padding: 1.1rem .75rem;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: .82rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  transition: all .2s;
  line-height: 1.3;
}

.wizard-option label i { font-size: 1.5rem; color: var(--muted); transition: color .2s; }

.wizard-option input:checked + label {
  background: rgba(254,46,28,.1);
  border-color: rgba(254,46,28,.5);
  color: var(--txt);
}

.wizard-option input:checked + label i { color: var(--accent); }
.wizard-option label:hover { border-color: rgba(254,46,28,.3); color: var(--txt); }

.wizard-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 1.75rem;
  gap: .75rem;
  flex-wrap: wrap;
}

/* ============================================================
   PAGE HERO (podstrony)
   ============================================================ */

.page-hero {
  padding: 5rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 260px;
  background: radial-gradient(ellipse, rgba(254,46,28,.18), transparent 70%);
  pointer-events: none;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -.02em;
  margin-bottom: .75rem;
}

.page-hero .lead {
  font-size: 1rem;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

.breadcrumb { justify-content: center; margin-bottom: 1rem; }
.breadcrumb-item a { color: var(--muted); }
.breadcrumb-item a:hover { color: var(--accent); }
.breadcrumb-item.active { color: var(--accent); }
.breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,.3) !important; }

/* ============================================================
   TIMELINE (o-nas.html)
   ============================================================ */

.timeline { position: relative; padding-left: 2.25rem; }

.timeline::before {
  content: '';
  position: absolute;
  left: .75rem;
  top: .5rem; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}

.timeline-item { position: relative; margin-bottom: 2.25rem; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.75rem;
  top: .45rem;
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(254,46,28,.2);
}

.timeline-year {
  font-size: .75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: .2rem;
}

.timeline-title  { font-weight: 700; font-size: .97rem; margin-bottom: .3rem; }
.timeline-text   { font-size: .87rem; color: var(--muted); line-height: 1.65; }

/* ============================================================
   COUNTERS (o-nas.html)
   ============================================================ */

.counter-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
}

.counter-number {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  display: block;
}

.counter-suffix { font-size: 1.6rem; font-weight: 900; color: var(--accent); }
.counter-label  { font-size: .83rem; color: var(--muted); margin-top: .5rem; display: block; }

/* ============================================================
   BLOG (blog.html)
   ============================================================ */

.blog-card {
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .25s, transform .25s;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  border-color: rgba(254,46,28,.4);
  transform: translateY(-5px);
}

.blog-card-img {
  height: 175px;
  background: linear-gradient(135deg, rgba(254,46,28,.14), rgba(254,46,28,.04));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  color: var(--accent);
  opacity: .75;
  flex-shrink: 0;
  border-bottom: 1px solid var(--stroke);
}

.blog-card-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.blog-category {
  display: inline-block;
  background: rgba(254,46,28,.10);
  border: 1px solid rgba(254,46,28,.22);
  color: var(--accent);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .18rem .6rem;
  border-radius: 100px;
  margin-bottom: .65rem;
}

.blog-card-title {
  font-size: .97rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: .6rem;
  color: var(--txt);
}

.blog-card-title a:hover { color: var(--accent); }

.blog-card-excerpt {
  font-size: .84rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1rem;
}

.blog-meta {
  font-size: .75rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: .5rem;
  padding-top: .9rem;
  border-top: 1px solid var(--stroke);
}

.blog-meta i { color: var(--accent); }

/* ============================================================
   FAQ (faq.html)
   ============================================================ */

.accordion-item {
  background: var(--card) !important;
  border: 1px solid var(--stroke) !important;
  border-radius: var(--radius-sm) !important;
  margin-bottom: .5rem !important;
  overflow: hidden;
}

.accordion-button {
  background: var(--card) !important;
  color: var(--txt) !important;
  font-weight: 600;
  font-size: .92rem;
  padding: 1.1rem 1.4rem !important;
  border: none !important;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  background: rgba(254,46,28,.07) !important;
  color: var(--txt) !important;
  box-shadow: none !important;
}

.accordion-button::after {
  filter: invert(1) brightness(2) !important;
}

.accordion-button:not(.collapsed)::after {
  filter: invert(40%) sepia(80%) saturate(600%) hue-rotate(340deg) !important;
}

.accordion-body {
  background: rgba(0,0,0,.15) !important;
  color: var(--muted);
  font-size: .88rem;
  line-height: 1.75;
  padding: 1rem 1.4rem 1.3rem !important;
}

.faq-category-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 2rem 0 .85rem;
  display: flex;
  align-items: center;
  gap: .6rem;
}

.faq-category-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--stroke);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  background: var(--card);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: rgba(254,46,28,.12);
  border: 1px solid rgba(254,46,28,.25);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-label {
  font-size: .72rem;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: .2rem;
}

.contact-info-value { font-weight: 600; font-size: .92rem; }
.contact-info-value a:hover { color: var(--accent); }

/* Map */
.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--stroke);
}

.map-wrapper iframe {
  display: block;
  width: 100%;
  height: 320px;
  filter: grayscale(40%) invert(90%) hue-rotate(180deg) brightness(.82);
}

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

.site-footer {
  background: rgba(0,0,0,.38);
  border-top: 1px solid var(--stroke);
  padding: 3.5rem 0 0;
  margin-top: 4rem;
}

.footer-logo img  { height: 8rem; width: auto; margin-bottom: 1rem; }
.footer-desc      { font-size: .84rem; color: var(--muted); line-height: 1.75; margin-bottom: 1.25rem; }
.footer-heading   { font-size: .72rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--txt); margin-bottom: 1rem; }

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

.footer-links li { margin-bottom: .4rem; }

.footer-links a {
  font-size: .84rem;
  color: var(--muted);
  transition: color .2s;
  display: flex;
  align-items: center;
  gap: .4rem;
}

.footer-links a i { font-size: .68rem; color: var(--accent); }
.footer-links a:hover { color: var(--txt); }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .84rem;
  color: var(--muted);
  margin-bottom: .55rem;
  line-height: 1.5;
}

.footer-contact-item i { color: var(--accent); font-size: .88rem; margin-top: .15rem; flex-shrink: 0; }
.footer-contact-item a:hover { color: var(--accent); }

.footer-bottom {
  background: rgba(0,0,0,.28);
  border-top: 1px solid var(--stroke);
  padding: 1rem 0;
  margin-top: 3rem;
}

.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  font-size: .77rem;
  color: var(--muted);
}

.footer-bottom-inner a { color: var(--muted); }
.footer-bottom-inner a:hover { color: var(--accent); }

/* ============================================================
   MISC UTILITIES
   ============================================================ */

.pill {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  background: rgba(254,46,28,.08);
  border: 1px solid rgba(254,46,28,.30);
  color: rgba(255,255,255,.9);
  font-weight: 600;
  font-size: .88rem;
  padding: .4rem .85rem;
  border-radius: 999px;
}

.icon-badge {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid rgba(254,46,28,.28);
  background: rgba(254,46,28,.10);
  color: var(--txt);
  flex: 0 0 auto;
}

.text-accent        { color: var(--accent) !important; }
.text-muted-c       { color: var(--muted) !important; }
.divider            { height: 1px; background: var(--stroke); margin: 14px 0; border: none; }
.fw-800             { font-weight: 800; }
.small-muted        { color: var(--muted); font-size: .85rem; }

.privacy-link {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.privacy-link:hover { color: #fff; text-decoration-thickness: 2px; }

/* ============================================================
   MOBILE CTA (fixed)
   ============================================================ */

.mobile-cta {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 990;
  width: calc(100% - 2rem);
  max-width: 360px;
}

@media (max-width: 767px) { .mobile-cta { display: block; } }

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

.consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1080;
  padding: 12px;
}

.consent-inner {
  max-width: 980px;
  margin: 0 auto;
  background: rgba(10,11,15,.96);
  border: 1px solid var(--stroke);
  border-radius: 14px;
  box-shadow: 0 16px 38px rgba(0,0,0,.45);
  padding: 14px;
}

.consent-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 10px; }

@media (min-width: 768px) {
  .consent-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .consent-actions { margin-top: 0; flex: 0 0 auto; }
}

/* ============================================================
   ANTI-SPAM HONEYPOT
   ============================================================ */

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

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

@media (max-width: 991px) {
  .hero { min-height: auto; padding: 7rem 0 3rem; }
  .hero-visual { margin-top: 2.5rem; }
  .hero-shield-wrap { width: 220px; height: 220px; }
  .hero-shield-icon { font-size: 5.5rem; }
  .section { padding: 3.5rem 0; }
  .site-footer { margin-top: 2.5rem; }
}

@media (max-width: 767px) {
  .hero h1 { font-size: 2rem; }
  .stat-number { font-size: 1.6rem; }
  .wizard-option-grid { grid-template-columns: repeat(2, 1fr); }
  .page-hero { padding: 3.5rem 0 2.5rem; }
  .section { padding: 2.75rem 0; }
}

@media (max-width: 575px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-accent,
  .hero-actions .btn-outline-light { width: 100%; justify-content: center; }
  .brands-bar { gap: .6rem; }
  .cta-banner { padding: 2.25rem 1.25rem; }
}
