@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Source+Sans+3:ital,wght@0,300;0,400;0,600;1,400&display=swap');

:root {
  --primary: #c0392b;
  --primary-dark: #922b21;
  --primary-light: #e74c3c;
  --black: #111111;
  --dark: #1a1a1a;
  --gray-dark: #2c2c2c;
  --gray: #555555;
  --gray-light: #888888;
  --gray-bg: #f4f4f4;
  --white: #ffffff;
  --border: #e0e0e0;
  --gold: #d4af37;
  --font-heading: 'Oswald', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.18);
  --radius: 4px;
  --transition: 0.25s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
}

/* TOPBAR */
.topbar {
  background: var(--black);
  color: var(--white);
  font-size: 0.82rem;
  padding: 7px 0;
  letter-spacing: 0.02em;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar a { color: var(--white); text-decoration: none; }
.topbar a:hover { color: var(--primary-light); }
.topbar-left, .topbar-right { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.topbar-right .badge {
  background: var(--primary);
  color: #fff;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 600;
}

/* HEADER */
header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo-icon {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.logo-icon svg { width: 30px; height: 30px; fill: white; }
.logo-text { line-height: 1.15; }
.logo-text .name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.logo-text .sub {
  font-size: 0.72rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

nav { display: flex; align-items: center; gap: 4px; }
nav a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dark);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: var(--transition);
  white-space: nowrap;
}
nav a:hover, nav a.active { color: var(--primary); background: rgba(192,57,43,0.07); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary { background: var(--primary); color: white; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: white; }
.btn-white { background: white; color: var(--primary); border-color: white; }
.btn-white:hover { background: transparent; color: white; }
.btn-whatsapp { background: #25d366; color: white; border-color: #25d366; }
.btn-whatsapp:hover { background: #1da851; border-color: #1da851; }
.btn-lg { padding: 15px 32px; font-size: 1.05rem; }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: var(--transition);
}

/* HERO */
.hero {
  background: linear-gradient(135deg, var(--black) 0%, var(--gray-dark) 50%, #3a0a06 100%);
  color: white;
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="g" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M0 20L20 0M-5 5L5-5M15 25L25 15" stroke="rgba(255,255,255,0.03)" stroke-width="1" fill="none"/></pattern></defs><rect width="100" height="100" fill="url(%23g)"/></svg>');
}
.hero::after {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(192,57,43,0.25) 0%, transparent 70%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(192,57,43,0.2);
  border: 1px solid rgba(192,57,43,0.5);
  color: var(--primary-light);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}
.hero h1 em { color: var(--primary-light); font-style: normal; }
.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 30px;
  max-width: 540px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.75);
}
.trust-icon {
  width: 32px;
  height: 32px;
  background: rgba(192,57,43,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 32px;
}
.hero-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: white;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.card-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
}
.card-contact-item .ci-icon {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.card-contact-item a { color: white; text-decoration: none; font-weight: 600; }
.card-contact-item a:hover { color: var(--primary-light); }
.hero-card .btn { width: 100%; justify-content: center; margin-top: 16px; }

/* URGENCY STRIP */
.urgency-strip {
  background: var(--primary);
  color: white;
  padding: 14px 0;
  text-align: center;
}
.urgency-strip p {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.urgency-strip strong { font-size: 1.1rem; }
.urgency-strip a { color: white; font-weight: 700; text-decoration: underline; }

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* SECTIONS */
section { padding: 70px 0; }
.section-alt { background: var(--gray-bg); }

.section-header { text-align: center; margin-bottom: 50px; }
.section-header .label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: 10px;
  display: block;
}
.section-header h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--black);
  margin-bottom: 14px;
}
.section-header p { font-size: 1.05rem; color: var(--gray); max-width: 600px; margin: 0 auto; }

/* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 32px 28px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
  display: block;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--primary); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(192,57,43,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 18px;
}
.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--black);
  margin-bottom: 10px;
}
.service-card p { font-size: 0.93rem; color: var(--gray); line-height: 1.6; }
.service-card .link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.88rem;
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 14px;
}

/* PROCESS */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  counter-reset: step;
}
.process-step {
  background: white;
  border-radius: 8px;
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--border);
  position: relative;
  counter-increment: step;
}
.process-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: rgba(192,57,43,0.1);
  display: block;
  margin-bottom: 8px;
}
.step-icon { font-size: 2rem; margin-bottom: 12px; display: block; }
.process-step h4 {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--black);
  margin-bottom: 8px;
}
.process-step p { font-size: 0.88rem; color: var(--gray); }

/* REVIEWS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.review-card {
  background: white;
  border-radius: 8px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 12px; letter-spacing: 2px; }
.review-text { font-size: 0.93rem; color: var(--gray); font-style: italic; margin-bottom: 16px; line-height: 1.7; }
.reviewer-name { font-weight: 700; font-size: 0.88rem; color: var(--dark); }
.reviewer-meta { font-size: 0.78rem; color: var(--gray-light); }

/* KOSTENLOS CTA */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), #c0392b);
  color: white;
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="80" cy="20" r="40" fill="rgba(255,255,255,0.04)"/><circle cx="20" cy="80" r="30" fill="rgba(255,255,255,0.04)"/></svg>');
}
.cta-section .container { position: relative; z-index: 1; }
.cta-section h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}
.cta-section p { font-size: 1.1rem; opacity: 0.9; margin-bottom: 32px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* FAQ */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  gap: 16px;
}
.faq-question h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dark);
}
.faq-question .faq-toggle {
  width: 30px;
  height: 30px;
  background: var(--gray-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  color: var(--primary);
  font-weight: 700;
  transition: var(--transition);
}
.faq-item.active .faq-toggle { transform: rotate(45deg); background: var(--primary); color: white; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer-inner { padding: 0 0 20px; font-size: 0.97rem; color: var(--gray); line-height: 1.7; }
.faq-item.active .faq-answer { max-height: 300px; }

/* SERVICE PAGE */
.page-hero {
  background: linear-gradient(135deg, var(--black), var(--gray-dark));
  color: white;
  padding: 60px 0;
  text-align: center;
}
.page-hero .label {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--primary-light);
  margin-bottom: 12px;
  display: block;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 14px;
}
.page-hero p { font-size: 1.05rem; opacity: 0.85; max-width: 600px; margin: 0 auto; }

/* BREADCRUMB */
.breadcrumb {
  background: var(--gray-bg);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.83rem;
}
.breadcrumb ol { list-style: none; display: flex; gap: 6px; flex-wrap: wrap; }
.breadcrumb li { color: var(--gray-light); }
.breadcrumb li::after { content: '›'; margin-left: 6px; }
.breadcrumb li:last-child::after { display: none; }
.breadcrumb a { color: var(--gray); text-decoration: none; }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb li:last-child { color: var(--dark); font-weight: 600; }

/* CONTENT LAYOUT */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 50px;
  align-items: start;
}
.content-main h2 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--black);
  margin: 32px 0 14px;
}
.content-main h2:first-child { margin-top: 0; }
.content-main h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark);
  margin: 24px 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.content-main p { margin-bottom: 16px; font-size: 0.97rem; color: var(--gray); line-height: 1.75; }
.content-main ul, .content-main ol { margin: 0 0 16px 20px; }
.content-main li { font-size: 0.97rem; color: var(--gray); line-height: 1.7; margin-bottom: 6px; }
.content-main strong { color: var(--dark); }

/* SIDEBAR */
.sidebar-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}
.sidebar-card-header {
  background: var(--primary);
  color: white;
  padding: 18px 22px;
}
.sidebar-card-header h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: white;
}
.sidebar-card-body { padding: 22px; }
.sidebar-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.93rem;
}
.sci-icon {
  width: 36px;
  height: 36px;
  background: rgba(192,57,43,0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.sidebar-contact-item a { color: var(--primary); font-weight: 700; text-decoration: none; }
.sidebar-contact-item a:hover { color: var(--primary-dark); }
.sidebar-card-body .btn { width: 100%; justify-content: center; margin-top: 10px; }

/* INFO BOX */
.info-box {
  background: rgba(192,57,43,0.06);
  border-left: 4px solid var(--primary);
  border-radius: 0 8px 8px 0;
  padding: 18px 22px;
  margin: 24px 0;
}
.info-box h4 {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--primary);
  margin-bottom: 6px;
}
.info-box p { font-size: 0.93rem; color: var(--gray); margin: 0; }

/* STATS BAR */
.stats-bar {
  background: var(--black);
  color: white;
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-item .number {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--primary-light);
  line-height: 1;
}
.stat-item .label {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 6px;
}

/* FOOTER */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.6); }
.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: white;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-col ul a:hover { color: var(--primary-light); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 10px; font-size: 0.88rem; }
.footer-contact-item a { color: rgba(255,255,255,0.8); text-decoration: none; }
.footer-contact-item a:hover { color: var(--primary-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.5); text-decoration: none; }
.footer-bottom a:hover { color: var(--primary-light); }
.footer-links { display: flex; gap: 20px; }

/* FLOAT BUTTON */
.float-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  text-decoration: none;
  transition: var(--transition);
  animation: pulse 2.5s infinite;
}
.float-whatsapp:hover { transform: scale(1.08); }
.float-whatsapp svg { width: 30px; height: 30px; fill: white; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 32px rgba(37,211,102,0.8); }
}

/* MOBILE MENU */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: white;
  z-index: 9998;
  padding: 80px 24px 30px;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gray-bg);
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mobile-menu nav { flex-direction: column; gap: 4px; margin-bottom: 24px; }
.mobile-menu nav a {
  font-size: 1.3rem;
  padding: 12px 10px;
  display: block;
  border-bottom: 1px solid var(--border);
}
.mobile-cta { display: flex; flex-direction: column; gap: 10px; }
.mobile-cta .btn { justify-content: center; }

/* IMPRESSUM */
.impressum-content { max-width: 700px; }
.impressum-content h2 { font-family: var(--font-heading); text-transform: uppercase; font-size: 1.3rem; color: var(--black); margin: 28px 0 10px; letter-spacing: 0.04em; }
.impressum-content h2:first-child { margin-top: 0; }
.impressum-content p, .impressum-content address { font-size: 0.97rem; color: var(--gray); line-height: 1.8; font-style: normal; }
.impressum-content a { color: var(--primary); }

/* LOCAL SEO */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.area-tag {
  background: white;
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 10px 14px;
  text-align: center;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
  transition: var(--transition);
  display: block;
}
.area-tag:hover { background: var(--primary); color: white; border-color: var(--primary); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { display: none; }
  .content-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 680px) {
  nav { display: none; }
  .header-cta .btn-outline { display: none; }
  .hamburger { display: flex; }
  section { padding: 50px 0; }
  .hero { padding: 50px 0 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .topbar .topbar-right .badge { display: none; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 1.9rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .stat-item .number { font-size: 2rem; }
}
