/*
Theme Name: Schlüsseldienst Stuttgart
Theme URI: https://xn--schlsseldienststuttgartt-ysc.de
Description: Premium WordPress Theme — Schlüsseldienst Stuttgart | WP-Flash v4.0
Author: WP-Flash | SerpZenith
Version: 4.0
*/

/* ═══════════════════════════════════════════════
   DESIGN TOKENS
════════════════════════════════════════════════ */
:root {
  --primary:        #0B1A2E;
  --primary-2:      #132540;
  --primary-3:      #1A3360;
  --accent:         #E8820C;
  --accent-2:       #D4720A;
  --accent-glow:    rgba(232,130,12,.25);
  --accent-soft:    #FFF4E6;
  --green:          #16A34A;
  --green-soft:     #F0FDF4;
  --bg:             #FFFFFF;
  --surface:        #F7F8FA;
  --surface-2:      #EEF0F4;
  --border:         #E2E6EE;
  --border-2:       #D0D5E0;
  --text:           #0B1A2E;
  --text-2:         #3D4F66;
  --text-3:         #7A8CA0;
  --white:          #FFFFFF;

  --r-sm:   6px;
  --r:      10px;
  --r-lg:   16px;
  --r-xl:   24px;

  --shadow-xs: 0 1px 3px rgba(11,26,46,.06);
  --shadow-sm: 0 4px 12px rgba(11,26,46,.08);
  --shadow:    0 8px 24px rgba(11,26,46,.10);
  --shadow-lg: 0 16px 40px rgba(11,26,46,.14);
  --shadow-xl: 0 24px 64px rgba(11,26,46,.18);

  --font-head: 'Raleway', sans-serif;
  --font-body: 'Inter', sans-serif;
  --max-w:     1200px;
  --trans:     .2s cubic-bezier(.4,0,.2,1);
}

/* ═══════════════════════════════════════════════
   RESET + BASE
════════════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html, body { overflow-x: hidden; }
body { font-family: var(--font-body); color: var(--text); background: var(--bg); line-height: 1.65; }
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; }
::selection { background: var(--accent); color: #fff; }

/* ═══════════════════════════════════════════════
   TYPOGRAPHY
════════════════════════════════════════════════ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 800;
  line-height: 1.15;
  color: var(--primary);
}
h1 { font-size: clamp(28px, 4.5vw, 52px); letter-spacing: -1px; }
h2 { font-size: clamp(22px, 3vw, 38px); letter-spacing: -.5px; }
h3 { font-size: clamp(17px, 2vw, 22px); font-weight: 700; }
h4 { font-size: 17px; font-weight: 700; }
p  { font-size: 15px; color: var(--text-2); line-height: 1.85; }

/* ═══════════════════════════════════════════════
   LAYOUT
════════════════════════════════════════════════ */
.container    { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 820px; margin: 0 auto; padding: 0 24px; }
.section      { padding: 88px 0; }
.section-sm   { padding: 60px 0; }
.section-xs   { padding: 40px 0; }

.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }
.text-center { text-align: center; }

/* ═══════════════════════════════════════════════
   SECTION HEAD
════════════════════════════════════════════════ */
.section-head { margin-bottom: 52px; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin: 0 auto; }
.section-label {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--accent);
  background: var(--accent-soft); padding: 5px 14px;
  border-radius: 100px; margin-bottom: 16px;
}
.section-label i { font-size: 10px; }
.section-head h2 { margin-bottom: 14px; }
.section-sub {
  font-size: 16px; color: var(--text-2);
  max-width: 600px; line-height: 1.8;
}

/* ═══════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  padding: 13px 24px; border-radius: var(--r);
  border: 2px solid transparent; transition: all var(--trans);
  white-space: nowrap; letter-spacing: .2px; line-height: 1;
  min-height: 48px;
}
.btn i { font-size: 13px; transition: transform var(--trans); }
.btn:hover .btn-arrow { transform: translateX(3px); }

.btn-primary {
  background: var(--accent); color: #fff; border-color: var(--accent);
  box-shadow: 0 4px 16px var(--accent-glow);
}
.btn-primary:hover {
  background: var(--accent-2); border-color: var(--accent-2);
  box-shadow: 0 6px 24px var(--accent-glow); transform: translateY(-2px);
}
.btn-dark { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-dark:hover { background: var(--primary-3); border-color: var(--primary-3); transform: translateY(-2px); }
.btn-outline {
  background: transparent; color: var(--primary);
  border-color: var(--border-2);
}
.btn-outline:hover { border-color: var(--primary); background: var(--surface); }
.btn-outline-white {
  background: transparent; color: #fff;
  border-color: rgba(255,255,255,.35);
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }
.btn-white { background: #fff; color: var(--primary); border-color: #fff; }
.btn-white:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: translateY(-2px); }

.btn-lg  { padding: 16px 32px; font-size: 15px; min-height: 52px; }
.btn-xl  { padding: 18px 40px; font-size: 16px; border-radius: 12px; min-height: 56px; }
.btn-block { width: 100%; }

/* ═══════════════════════════════════════════════
   BADGES
════════════════════════════════════════════════ */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 12px; font-weight: 600; padding: 4px 10px;
  border-radius: 100px;
}
.badge-blue   { background: #EFF6FF; color: #1D4ED8; }
.badge-green  { background: var(--green-soft); color: var(--green); }
.badge-orange { background: var(--accent-soft); color: var(--accent); }
.badge-dark   { background: rgba(255,255,255,.14); color: rgba(255,255,255,.9); }

/* ═══════════════════════════════════════════════
   TOP BAR
════════════════════════════════════════════════ */
.top-bar {
  background: var(--primary);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 9px 0;
}
.top-bar-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 16px;
}
.top-bar-left { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.top-bar-item {
  display: flex; align-items: center; gap: 7px;
  color: rgba(255,255,255,.6); font-size: 13px;
}
.top-bar-item i { color: var(--accent); font-size: 11px; }
.top-bar-right { display: flex; gap: 16px; align-items: center; }
.top-bar-right a { color: rgba(255,255,255,.5); font-size: 13px; transition: color var(--trans); }
.top-bar-right a:hover { color: var(--accent); }
.top-bar-cta {
  background: var(--accent); color: #fff !important;
  padding: 4px 14px; border-radius: 100px;
  font-weight: 700; font-size: 12px; letter-spacing: .3px;
}
.top-bar-cta:hover { background: var(--accent-2) !important; color: #fff !important; }

/* ═══════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════ */
.header-wrap {
  position: sticky; top: 0; z-index: 300;
  box-shadow: none; transition: box-shadow var(--trans);
}
.header-wrap.scrolled { box-shadow: 0 4px 24px rgba(11,26,46,.15); }
.site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 24px;
  padding: 14px 0;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: linear-gradient(135deg, var(--primary), var(--primary-3));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.logo-icon i { color: var(--accent); font-size: 20px; }
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: var(--font-head); font-weight: 800;
  font-size: 16px; color: var(--primary); letter-spacing: -.3px;
}
.logo-sub { font-size: 11px; color: var(--text-3); margin-top: 3px; font-weight: 500; }

/* Nav */
.nav-main ul { display: flex; gap: 2px; align-items: center; }
.nav-main > ul > li { position: relative; }
.nav-main a {
  display: flex; align-items: center; gap: 5px;
  color: var(--text); font-size: 14px; font-weight: 600;
  padding: 8px 12px; border-radius: var(--r-sm);
  transition: all var(--trans);
}
.nav-main a:hover { color: var(--accent); background: var(--surface); }
.nav-main .chevron { font-size: 9px; color: var(--text-3); }

/* Dropdown */
.nav-dropdown {
  display: none; position: absolute;
  top: calc(100% + 8px); left: -8px;
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--r-lg); box-shadow: var(--shadow-xl);
  min-width: 230px; padding: 8px; z-index: 50;
}
.has-drop:hover .nav-dropdown { display: block; }
.nav-dropdown a {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 12px; border-radius: var(--r-sm);
  font-size: 14px; font-weight: 500;
}
.nav-dropdown a:hover { background: var(--surface); color: var(--accent); }
.nav-dropdown a i { width: 18px; text-align: center; color: var(--accent); }

/* Header Phone */
.header-cta { display: flex; flex-direction: column; align-items: flex-end; flex-shrink: 0; }
.header-phone {
  font-family: var(--font-head); font-size: 20px; font-weight: 800;
  color: var(--primary); letter-spacing: -.3px; line-height: 1;
  transition: color var(--trans);
}
.header-phone:hover { color: var(--accent); }
.header-phone i { color: var(--accent); font-size: 15px; margin-right: 4px; }
.header-avail {
  font-size: 11px; color: var(--text-3); margin-top: 3px;
  display: flex; align-items: center; gap: 4px;
}
.dot-live {
  width: 6px; height: 6px; background: var(--green);
  border-radius: 50%; animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{opacity:1;} 50%{opacity:.3;} }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  padding: 8px; background: none; border: none;
  border-radius: var(--r-sm);
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--primary); border-radius: 2px;
  transition: all .25s ease;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════
   MOBILE OVERLAY
════════════════════════════════════════════════ */
.mobile-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(11,26,46,.97);
  z-index: 9999; overflow-y: auto;
  padding: 20px;
}
.mobile-overlay.open { display: block; }
.mobile-overlay-head {
  display: flex; align-items: center;
  justify-content: space-between;
  padding-bottom: 16px; margin-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.mobile-logo { display: flex; align-items: center; gap: 10px; }
.mobile-logo-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
}
.mobile-logo-icon i { color: var(--accent); font-size: 15px; }
.mobile-logo-name {
  font-family: var(--font-head); font-weight: 800;
  font-size: 15px; color: #fff; line-height: 1.2;
}
.mobile-logo-sub { font-size: 11px; color: rgba(255,255,255,.4); }
.mobile-close {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.8); font-size: 16px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: background var(--trans);
}
.mobile-close:hover { background: rgba(255,255,255,.18); }
.mobile-nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-nav a {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 16px; border-radius: 10px;
  color: rgba(255,255,255,.8); font-size: 15px;
  font-weight: 600; font-family: var(--font-head);
  transition: all var(--trans);
}
.mobile-nav a:hover, .mobile-nav a.active {
  background: rgba(255,255,255,.08); color: #fff;
}
.mobile-nav a i { color: var(--accent); width: 20px; text-align: center; }
.mobile-divider { height: 1px; background: rgba(255,255,255,.07); margin: 8px 0; }
.mobile-cta {
  margin-top: 20px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.mobile-cta a {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px; border-radius: 12px;
  font-family: var(--font-head); font-weight: 800;
  font-size: 18px; color: #fff;
  background: var(--accent); margin-bottom: 10px;
}
.mobile-cta a:hover { background: var(--accent-2); }

/* ═══════════════════════════════════════════════
   HERO
════════════════════════════════════════════════ */
.hero {
  background: var(--primary);
  position: relative; overflow: hidden;
  padding: 80px 0 72px;
}
.hero-bg-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 36px 36px;
}
.hero-bg-glow {
  position: absolute; top: -160px; right: -160px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,130,12,.13) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.hero-bg-glow-2 {
  position: absolute; bottom: -200px; left: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 65%);
  border-radius: 50%; pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 400px;
  gap: 60px; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,130,12,.15);
  border: 1px solid rgba(232,130,12,.3);
  color: var(--accent); padding: 6px 14px;
  border-radius: 100px; font-size: 11px;
  font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 22px;
}
.hero-badge i { font-size: 10px; }
.hero h1 { color: #fff; margin-bottom: 20px; }
.hero h1 span { color: var(--accent); }
.hero-desc {
  font-size: 17px; color: rgba(255,255,255,.7);
  line-height: 1.9; max-width: 540px; margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust {
  display: flex; gap: 20px; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,.08);
}
.hero-trust-item {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: rgba(255,255,255,.65); font-weight: 500;
}
.hero-trust-item i { color: var(--accent); font-size: 12px; }

/* Hero Card */
.hero-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.11);
  border-radius: var(--r-xl); padding: 28px;
  backdrop-filter: blur(10px);
}
.hero-card-head {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 18px; margin-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hero-card-head .dot-live { flex-shrink: 0; }
.hero-card-head span {
  font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,.75); font-family: var(--font-head);
}
.hero-service-list { display: flex; flex-direction: column; gap: 8px; }
.hero-service-link {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 14px; border-radius: 10px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.06);
  transition: all var(--trans);
  color: rgba(255,255,255,.8); font-size: 14px; font-weight: 500;
}
.hero-service-link:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.12); color: #fff;
}
.hero-service-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(232,130,12,.15); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-service-icon i { color: var(--accent); font-size: 14px; }
.hero-service-text { flex: 1; }
.hero-service-name { display: block; font-weight: 600; font-size: 14px; }
.hero-service-time { font-size: 11px; color: rgba(255,255,255,.4); margin-top: 1px; }
.hero-service-arrow { color: var(--accent); font-size: 11px; }

/* ═══════════════════════════════════════════════
   STATS STRIP
════════════════════════════════════════════════ */
.stats-strip {
  background: var(--primary-2);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 28px 0;
}
.stats-inner { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item {
  display: flex; align-items: center; gap: 14px;
  padding: 8px 28px; border-right: 1px solid rgba(255,255,255,.08);
}
.stat-item:first-child { padding-left: 0; }
.stat-item:last-child { border-right: none; }
.stat-icon {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.stat-icon.orange { background: rgba(232,130,12,.15); }
.stat-icon.orange i { color: var(--accent); }
.stat-icon.blue { background: rgba(59,130,246,.15); }
.stat-icon.blue i { color: #60A5FA; }
.stat-icon.green { background: rgba(22,163,74,.15); }
.stat-icon.green i { color: #4ADE80; }
.stat-icon.purple { background: rgba(139,92,246,.15); }
.stat-icon.purple i { color: #A78BFA; }
.stat-icon i { font-size: 18px; }
.stat-num {
  font-family: var(--font-head); font-size: 28px;
  font-weight: 900; color: #fff; line-height: 1;
  letter-spacing: -.5px;
}
.stat-num sup { font-size: 14px; font-weight: 700; color: var(--accent); }
.stat-desc { font-size: 12px; color: rgba(255,255,255,.45); margin-top: 3px; }

/* ═══════════════════════════════════════════════
   SERVICE CARDS
════════════════════════════════════════════════ */
.service-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
  transition: all var(--trans); display: flex; flex-direction: column;
}
.service-card:hover {
  border-color: var(--accent); box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.service-card-img {
  position: relative; height: 180px; overflow: hidden;
  background: var(--surface);
}
.service-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--primary-3));
}
.service-card-img-placeholder i { font-size: 48px; color: var(--accent); opacity: .5; }
.service-card-badge {
  position: absolute; top: 12px; left: 12px;
}
.service-card-body { padding: 22px 20px; flex: 1; }
.service-card-icon-wrap {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--accent-soft); display: flex;
  align-items: center; justify-content: center; margin-bottom: 14px;
}
.service-card-icon-wrap i { color: var(--accent); font-size: 20px; }
.service-card h3 { margin-bottom: 8px; font-size: 17px; }
.service-card p { font-size: 14px; margin-bottom: 0; }
.service-card-footer {
  padding: 16px 20px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.service-card-price {
  font-family: var(--font-head); font-weight: 700;
  font-size: 15px; color: var(--green);
  display: flex; align-items: center; gap: 5px;
}
.service-card-price i { font-size: 13px; }
.service-card-link {
  font-size: 13px; font-weight: 700; color: var(--accent);
  display: flex; align-items: center; gap: 5px;
  transition: gap var(--trans);
}
.service-card:hover .service-card-link { gap: 8px; }

/* ═══════════════════════════════════════════════
   WHY CHOOSE US
════════════════════════════════════════════════ */
.why-grid { display: grid; grid-template-columns: 1fr 500px; gap: 72px; align-items: center; }
.why-features { display: flex; flex-direction: column; gap: 24px; }
.why-feature {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; border-radius: var(--r-lg);
  border: 1.5px solid var(--border);
  background: #fff; transition: all var(--trans);
}
.why-feature:hover { border-color: var(--accent-soft); box-shadow: var(--shadow-sm); }
.why-feature-icon {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--accent-soft); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.why-feature-icon i { color: var(--accent); font-size: 20px; }
.why-feature-body h4 { margin-bottom: 5px; font-size: 16px; }
.why-feature-body p { font-size: 14px; }

/* Why Visual */
.why-visual {
  position: relative;
}
.why-visual-card {
  background: var(--primary); border-radius: var(--r-xl);
  padding: 36px; position: relative; overflow: hidden;
}
.why-visual-card::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 28px 28px;
}
.why-visual-inner { position: relative; z-index: 1; }
.why-visual-title {
  font-family: var(--font-head); font-size: 28px;
  font-weight: 900; color: #fff; margin-bottom: 24px;
}
.why-visual-title span { color: var(--accent); }
.why-badge-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.why-badge {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r); padding: 16px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 8px;
}
.why-badge i { color: var(--accent); font-size: 22px; }
.why-badge-num {
  font-family: var(--font-head); font-size: 24px;
  font-weight: 900; color: #fff; line-height: 1;
}
.why-badge-label { font-size: 11px; color: rgba(255,255,255,.5); }
.why-review {
  margin-top: 20px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.07);
  display: flex; align-items: center; gap: 12px;
}
.why-review-stars { display: flex; gap: 2px; }
.why-review-stars i { color: #FBBF24; font-size: 14px; }
.why-review-text { font-size: 13px; color: rgba(255,255,255,.55); }
.why-review-text strong { color: rgba(255,255,255,.8); }

/* ═══════════════════════════════════════════════
   STEPS
════════════════════════════════════════════════ */
.steps-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 32px;
  position: relative;
}
.steps-grid::before {
  content: ''; position: absolute;
  top: 36px; left: calc(16.66% + 20px);
  right: calc(16.66% + 20px);
  height: 2px;
  background: repeating-linear-gradient(
    to right, var(--accent) 0, var(--accent) 8px,
    transparent 8px, transparent 16px
  );
}
.step-card { text-align: center; }
.step-num-wrap {
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--accent); color: #fff;
  font-family: var(--font-head); font-size: 22px;
  font-weight: 900; display: flex; align-items: center;
  justify-content: center; position: relative; z-index: 1;
  box-shadow: 0 0 0 8px var(--accent-soft);
}
.step-card h3 { margin-bottom: 10px; font-size: 18px; }
.step-card p { font-size: 14px; max-width: 260px; margin: 0 auto; }

/* ═══════════════════════════════════════════════
   DISTRICT GRID
════════════════════════════════════════════════ */
.district-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 10px;
}
.district-pill {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--r); padding: 12px 16px;
  font-size: 14px; font-weight: 600; color: var(--text);
  font-family: var(--font-head); transition: all var(--trans);
}
.district-pill i { color: var(--accent); font-size: 11px; flex-shrink: 0; }
.district-pill:hover {
  background: var(--primary); color: #fff;
  border-color: var(--primary); transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.district-pill:hover i { color: var(--accent); }

/* ═══════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════ */
.testimonial-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 28px;
  transition: all var(--trans); display: flex; flex-direction: column;
}
.testimonial-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.review-platform { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.review-platform i { color: #4285F4; font-size: 16px; }
.review-platform span {
  font-size: 11px; font-weight: 700; color: var(--text-3);
  text-transform: uppercase; letter-spacing: 1px;
}
.stars { display: flex; gap: 2px; margin-bottom: 14px; }
.stars i { color: #FBBF24; font-size: 13px; }
.testimonial-quote {
  font-size: 15px; line-height: 1.85;
  color: var(--text); flex: 1; margin-bottom: 20px;
  position: relative; padding-top: 8px;
}
.testimonial-quote::before {
  content: '\201E';
  font-size: 44px; color: var(--accent); line-height: 0;
  display: block; margin-bottom: 12px;
  font-family: Georgia, serif; opacity: .5;
}
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-av {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.reviewer-av i { color: var(--accent); font-size: 16px; }
.reviewer-name { font-size: 14px; font-weight: 700; color: var(--primary); font-family: var(--font-head); }
.reviewer-loc { font-size: 12px; color: var(--text-3); display: flex; align-items: center; gap: 4px; margin-top: 1px; }
.reviewer-loc i { color: var(--accent); font-size: 10px; }

/* ═══════════════════════════════════════════════
   PRICING
════════════════════════════════════════════════ */
.pricing-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--r-lg); padding: 32px;
  transition: all var(--trans); position: relative;
}
.pricing-card.featured {
  background: var(--primary); border-color: var(--primary);
  box-shadow: var(--shadow-xl); transform: scale(1.04);
}
.pricing-card:not(.featured):hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-tag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: 11px; font-weight: 700; padding: 4px 14px;
  border-radius: 100px; white-space: nowrap;
  font-family: var(--font-head); letter-spacing: .5px;
}
.pricing-type {
  font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 2px; color: var(--text-3); margin-bottom: 10px;
}
.pricing-card.featured .pricing-type { color: rgba(255,255,255,.55); }
.pricing-num { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.pricing-amount { font-family: var(--font-head); font-size: 52px; font-weight: 900; color: var(--primary); letter-spacing: -2px; }
.pricing-card.featured .pricing-amount { color: var(--accent); }
.pricing-currency { font-size: 22px; font-weight: 700; color: var(--text-3); padding-top: 10px; align-self: flex-start; }
.pricing-card.featured .pricing-currency { color: rgba(255,255,255,.5); }
.pricing-note { font-size: 13px; color: var(--text-3); margin-bottom: 24px; }
.pricing-card.featured .pricing-note { color: rgba(255,255,255,.45); }
.pricing-sep { height: 1px; background: var(--border); margin: 20px 0; }
.pricing-card.featured .pricing-sep { background: rgba(255,255,255,.1); }
.pricing-items { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.pricing-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text); }
.pricing-card.featured .pricing-item { color: rgba(255,255,255,.8); }
.pricing-item i { color: var(--green); font-size: 13px; margin-top: 2px; flex-shrink: 0; }
.pricing-card.featured .pricing-item i { color: var(--accent); }

/* ═══════════════════════════════════════════════
   FAQ
════════════════════════════════════════════════ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--r); overflow: hidden;
  transition: border-color var(--trans);
}
.faq-item.open { border-color: rgba(232,130,12,.3); box-shadow: var(--shadow-xs); }
.faq-btn {
  width: 100%; padding: 18px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  background: none; border: none; text-align: left;
  font-family: var(--font-head); font-size: 15px; font-weight: 700;
  color: var(--primary); cursor: pointer; transition: color var(--trans);
  min-height: 56px;
}
.faq-btn:hover { color: var(--accent); }
.faq-icon {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--surface); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--trans);
}
.faq-icon i { color: var(--text-3); font-size: 11px; transition: transform var(--trans); }
.faq-item.open .faq-icon { background: var(--accent); }
.faq-item.open .faq-icon i { color: #fff; transform: rotate(45deg); }
.faq-body {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s;
  padding: 0 22px;
}
.faq-item.open .faq-body { max-height: 400px; padding-bottom: 20px; }
.faq-body p { font-size: 14px; color: var(--text-2); line-height: 1.85; }

/* ═══════════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #1a3464 100%);
  padding: 96px 0; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 32px 32px;
}
.cta-section::after {
  content: ''; position: absolute; bottom: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(232,130,12,.1) 0%, transparent 65%);
  border-radius: 50%;
}
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-inner h2 { color: #fff; margin-bottom: 16px; }
.cta-inner p { font-size: 17px; color: rgba(255,255,255,.65); max-width: 520px; margin: 0 auto 32px; }
.cta-phone {
  display: block;
  font-family: var(--font-head); font-size: clamp(34px,5vw,54px);
  font-weight: 900; color: var(--accent); letter-spacing: -1.5px;
  margin-bottom: 32px; transition: color var(--trans);
}
.cta-phone:hover { color: #fff; }
.cta-phone i { font-size: 70%; margin-right: 10px; }
.cta-actions {
  display: flex; gap: 14px; justify-content: center;
  flex-wrap: wrap; margin-bottom: 24px;
}
.cta-notes {
  display: flex; gap: 24px; justify-content: center;
  flex-wrap: wrap; font-size: 13px; color: rgba(255,255,255,.4);
}
.cta-notes span { display: flex; align-items: center; gap: 5px; }
.cta-notes i { color: var(--accent); }

/* ═══════════════════════════════════════════════
   BREADCRUMB
════════════════════════════════════════════════ */
.breadcrumb-wrap { padding: 12px 0; border-bottom: 1px solid var(--border); }
.breadcrumb {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; flex-wrap: wrap;
}
.breadcrumb a { color: var(--text-3); transition: color var(--trans); }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb i { color: var(--border-2); font-size: 10px; }
.breadcrumb span { color: var(--text); font-weight: 600; }

/* ═══════════════════════════════════════════════
   PAGE HERO
════════════════════════════════════════════════ */
.page-hero {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  padding: 52px 0; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 28px 28px;
}
.page-hero-inner { position: relative; z-index: 1; max-width: 720px; }
.page-hero h1 { color: #fff; font-size: clamp(22px,3.5vw,40px); margin-bottom: 12px; }
.page-hero-desc { color: rgba(255,255,255,.65); font-size: 16px; margin-bottom: 20px; }
.page-hero-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.page-hero-badge {
  display: flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.75); font-size: 12px; font-weight: 600;
  padding: 5px 12px; border-radius: 100px;
}
.page-hero-badge i { color: var(--accent); font-size: 10px; }

/* ═══════════════════════════════════════════════
   PAGE LAYOUT
════════════════════════════════════════════════ */
.page-wrap { padding: 56px 0; }
.page-grid { display: grid; grid-template-columns: 1fr 290px; gap: 48px; align-items: flex-start; }
.content h2 {
  font-size: 24px; margin: 40px 0 14px;
  padding-top: 10px; border-top: 2px solid var(--border);
}
.content h2:first-child { margin-top: 0; border-top: none; padding-top: 0; }
.content h3 { font-size: 19px; margin: 28px 0 10px; color: var(--primary-3); }
.content p { font-size: 15px; line-height: 1.9; margin-bottom: 16px; }
.content ul { margin: 16px 0 20px; display: flex; flex-direction: column; gap: 10px; }
.content ul li {
  font-size: 15px; line-height: 1.7; color: var(--text-2);
  display: flex; align-items: flex-start; gap: 10px;
}
.content ul li::before {
  content: ''; width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%2316A34A'%3E%3Cpath fill-rule='evenodd' d='M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ═══════════════════════════════════════════════
   SIDEBAR
════════════════════════════════════════════════ */
.sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 90px; }
.sidebar-box {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--r-lg); overflow: hidden;
}
.sidebar-box.cta-box { background: var(--primary); border-color: var(--primary); }
.sidebar-box-head {
  padding: 16px 20px; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.sidebar-box.cta-box .sidebar-box-head { border-bottom-color: rgba(255,255,255,.1); }
.sidebar-box-head i { color: var(--accent); font-size: 16px; }
.sidebar-box-head h5 { font-size: 14px; font-weight: 700; }
.sidebar-box.cta-box .sidebar-box-head h5 { color: rgba(255,255,255,.75); }
.sidebar-box-body { padding: 18px 20px; }
.sidebar-phone {
  font-family: var(--font-head); font-size: 22px; font-weight: 800;
  color: var(--accent); display: flex; align-items: center; gap: 8px;
  margin-bottom: 6px;
}
.sidebar-avail {
  font-size: 12px; color: rgba(255,255,255,.45);
  display: flex; align-items: center; gap: 5px; margin-bottom: 16px;
}
.sidebar-links { display: flex; flex-direction: column; gap: 2px; }
.sidebar-links a {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500; color: var(--text);
  padding: 9px 10px; border-radius: var(--r-sm);
  transition: all var(--trans);
}
.sidebar-links a:hover { background: var(--surface); color: var(--accent); }
.sidebar-links a i { color: var(--accent); font-size: 13px; width: 16px; text-align: center; }
.trust-list { display: flex; flex-direction: column; gap: 10px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--text-2); }
.trust-item i { color: var(--green); font-size: 14px; }

/* ═══════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.site-footer { background: var(--primary); }
.footer-top {
  padding: 72px 0 56px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .footer-logo {
  display: flex; align-items: center; gap: 12px; margin-bottom: 18px;
}
.footer-logo-icon {
  width: 40px; height: 40px; border-radius: 9px;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
}
.footer-logo-icon i { color: var(--accent); font-size: 17px; }
.footer-logo-name { font-family: var(--font-head); font-weight: 800; font-size: 16px; color: #fff; }
.footer-logo-sub { font-size: 11px; color: rgba(255,255,255,.4); }
.footer-desc { font-size: 14px; color: rgba(255,255,255,.5); line-height: 1.8; margin-bottom: 24px; }
.footer-tel {
  font-family: var(--font-head); font-size: 22px; font-weight: 800;
  color: var(--accent); display: flex; align-items: center; gap: 8px; margin-bottom: 4px;
}
.footer-tel i { font-size: 16px; }
.footer-tel-sub { font-size: 12px; color: rgba(255,255,255,.35); }
.footer-col h5 {
  font-family: var(--font-head); font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,.45); text-transform: uppercase;
  letter-spacing: 2px; margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 14px; color: rgba(255,255,255,.55);
  transition: color var(--trans);
  display: flex; align-items: center; gap: 6px;
}
.footer-col a i { font-size: 10px; color: rgba(255,255,255,.2); transition: color var(--trans); }
.footer-col a:hover { color: var(--accent); }
.footer-col a:hover i { color: var(--accent); }
.footer-trust {
  padding: 20px 0; border-top: 1px solid rgba(255,255,255,.06);
  display: flex; align-items: center; gap: 32px; flex-wrap: wrap;
}
.footer-trust-item { display: flex; align-items: center; gap: 8px; }
.footer-trust-item i { color: var(--accent); font-size: 16px; }
.footer-trust-item span { font-size: 13px; color: rgba(255,255,255,.45); font-weight: 500; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.06);
  padding: 20px 0;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,.3); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,.3); transition: color var(--trans); }
.footer-links a:hover { color: rgba(255,255,255,.65); }

/* ═══════════════════════════════════════════════
   FLOATING PHONE
════════════════════════════════════════════════ */
.float-phone {
  display: none; position: fixed;
  bottom: 20px; right: 20px; z-index: 500;
}
.float-phone a {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--accent); display: flex;
  align-items: center; justify-content: center;
  box-shadow: 0 8px 28px var(--accent-glow);
  animation: floatPulse 2.5s infinite;
}
.float-phone a i { color: #fff; font-size: 22px; }
@keyframes floatPulse {
  0%,100% { box-shadow: 0 8px 28px var(--accent-glow); }
  50%      { box-shadow: 0 8px 40px rgba(232,130,12,.7), 0 0 0 10px rgba(232,130,12,.1); }
}

/* ═══════════════════════════════════════════════
   404
════════════════════════════════════════════════ */
.page-404 { padding: 120px 0; text-align: center; }
.error-code { font-family: var(--font-head); font-size: 160px; font-weight: 900; color: var(--surface-2); line-height: 1; letter-spacing: -8px; }
.error-msg { margin-top: -48px; position: relative; }
.error-msg h1 { font-size: 32px; margin-bottom: 14px; }
.error-msg p { font-size: 16px; max-width: 440px; margin: 0 auto 32px; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .nav-main, .header-cta { display: none; }
  .hamburger { display: flex; }
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .page-grid { grid-template-columns: 1fr; }
  .sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .top-bar { display: none; }
  .section { padding: 60px 0; }
  .section-sm { padding: 44px 0; }
  .hero { padding: 52px 0 44px; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding: 12px 16px; }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.08); }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .steps-grid::before { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .float-phone { display: block; }
  .sidebar { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; max-width: 320px; }
  .pricing-card.featured { transform: none; }
  .section-head { margin-bottom: 36px; }
  .page-hero { padding: 40px 0; }
}
@media (max-width: 480px) {
  .container, .container-sm { padding: 0 16px; }
  .hero { padding: 36px 0 28px; }
  .section { padding: 44px 0; }
  .section-sm { padding: 32px 0; }
  .page-hero { padding: 28px 0; }
  .cta-section { padding: 56px 0; }
  .cta-phone { font-size: clamp(24px, 8vw, 40px); }
  .hero-trust { flex-direction: column; gap: 10px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
  .district-grid { grid-template-columns: repeat(2,1fr); }
  .pricing-card { padding: 24px 18px; }
  .testimonial-card { padding: 20px 16px; }
  .footer-trust { gap: 14px; }
  .section-head { margin-bottom: 24px; }
  .page-wrap { padding: 36px 0; }
  .faq-btn { font-size: 14px; padding: 14px 16px; }
  .stats-inner { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; }
}
@media (min-width: 769px) and (max-width: 1100px) {
  .grid-3 { grid-template-columns: repeat(2,1fr); }
  .hero { padding: 64px 0 56px; }
}
@media (hover: none) {
  .btn { min-height: 48px; }
  .faq-btn { min-height: 52px; }
}

/* ═══════════════════════════════════════════════
   ADMIN BAR FIX
════════════════════════════════════════════════ */
.admin-bar .header-wrap { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .header-wrap { top: 46px; }
}
