/* Schlüsseldienst Bad Kreuznach - Adam | HTML5/CSS3 */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

:root {
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(220, 25%, 18%);
  --card: hsl(0, 0%, 100%);
  --primary: hsl(192, 93%, 36%);
  --primary-foreground: hsl(0, 0%, 100%);
  --muted: hsl(210, 8%, 95%);
  --muted-foreground: hsl(215, 14%, 46%);
  --accent: hsl(43, 100%, 58%);
  --accent-foreground: hsl(220, 25%, 18%);
  --border: hsl(220, 15%, 90%);
  --header-dark: hsl(192, 93%, 28%);
  --trust-green: hsl(152, 53%, 40%);
  --star-gold: hsl(43, 100%, 58%);
  --section-alt: hsl(210, 8%, 97%);
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 16px; line-height: 1.5;
  color: var(--foreground); background: var(--background);
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 767px) { body { padding-bottom: 70px; } }

img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-weight: 800; line-height: 1.2; }

.container { width: 100%; max-width: 1400px; margin: 0 auto; padding-inline: 1rem; }
@media (min-width: 768px) { .container { padding-inline: 2rem; } }

/* HEADER */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--header-dark); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding-block: 0.75rem; }
.logo-link { flex-shrink: 0; }
.logo-img { height: 32px; width: auto; filter: brightness(0) invert(1); }
@media (min-width: 768px) { .logo-img { height: 40px; } }

.main-nav { display: none; align-items: center; gap: 1.5rem; }
@media (min-width: 1024px) { .main-nav { display: flex; } }
.main-nav a { font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.75); transition: color 0.15s; }
.main-nav a:hover { color: #fff; }

.header-right { display: flex; align-items: center; gap: 0.75rem; }

.btn-notruf {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--accent); color: var(--accent-foreground);
  padding: 0.5rem 1rem; border-radius: 0.5rem;
  font-size: 0.875rem; font-weight: 700; transition: transform 0.15s;
}
.btn-notruf:hover { transform: scale(1.05); }
.btn-notruf:active { transform: scale(0.95); }
.btn-notruf .label-long { display: none; }
.btn-notruf .label-short { display: inline; }
@media (min-width: 640px) {
  .btn-notruf .label-long { display: inline; }
  .btn-notruf .label-short { display: none; }
}

.pulse-dot { position: relative; display: inline-flex; width: 10px; height: 10px; margin-left: 0.25rem; }
.pulse-dot::before {
  content: ''; position: absolute; inset: 0;
  border-radius: 50%; background: var(--trust-green);
  animation: pulse-green 1.5s ease-in-out infinite;
}
.pulse-dot::after {
  content: ''; display: inline-block; width: 10px; height: 10px;
  border-radius: 50%; background: var(--trust-green); position: relative;
}
@keyframes pulse-green {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 hsla(152,53%,40%,0.7); }
  50% { opacity: 0.8; box-shadow: 0 0 0 6px hsla(152,53%,40%,0); }
}

.menu-toggle { display: inline-flex; align-items: center; justify-content: center; color: #fff; width: 32px; height: 32px; }
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.icon-menu { display: block; }
.icon-close { display: none; }
.menu-open .icon-menu { display: none; }
.menu-open .icon-close { display: block; }

.mobile-nav { display: none; border-top: 1px solid rgba(255,255,255,0.1); padding: 0 1rem 1rem; }
.menu-open .mobile-nav { display: block; }
@media (min-width: 1024px) { .menu-open .mobile-nav { display: none; } }
.mobile-nav a { display: block; padding: 0.75rem 0; font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.75); }
.mobile-nav a:hover { color: #fff; }

/* HERO */
.hero { position: relative; background: var(--background); padding: 3.5rem 1rem; overflow: hidden; }
@media (min-width: 768px) { .hero { padding-block: 5rem; } }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, hsla(192,93%,36%,0.03), transparent); pointer-events: none; }
.hero-grid { position: relative; display: grid; gap: 2.5rem; align-items: center; max-width: 72rem; margin: 0 auto; }
@media (min-width: 768px) { .hero-grid { grid-template-columns: 1fr 1fr; } }

.hero-badge {
  display: inline-block; margin-bottom: 1rem; padding: 0.375rem 1rem;
  border: 1px solid hsla(192,93%,36%,0.2); background: hsla(192,93%,36%,0.05);
  color: var(--primary); border-radius: 9999px;
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
}

.hero h1 { font-size: 1.875rem; line-height: 1.15; margin-bottom: 1rem; color: var(--foreground); }
@media (min-width: 768px) { .hero h1 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3rem; } }
.hero h1 .hl-primary { color: var(--primary); }

.hero-lead { font-size: 1rem; margin-bottom: 2rem; color: var(--muted-foreground); line-height: 1.625; }
@media (min-width: 768px) { .hero-lead { font-size: 1.125rem; } }

.review-widgets { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 1.5rem; }
.review-widget {
  display: inline-flex; align-items: center; gap: 0.625rem;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 0.5rem; padding: 0.625rem 1rem; box-shadow: var(--shadow-sm);
}
.review-widget img { width: 24px; height: 24px; object-fit: contain; }
.review-widget-title { font-size: 0.75rem; font-weight: 700; color: var(--foreground); }
.review-widget-row { display: flex; align-items: center; gap: 0.25rem; }
.review-widget-row .score { font-size: 0.875rem; font-weight: 700; color: var(--foreground); }
.review-widget-subtitle { font-size: 0.625rem; color: var(--muted-foreground); display: block; }

.stars { display: inline-flex; gap: 1px; color: var(--star-gold); }
.stars svg { width: 12px; height: 12px; }

.adac-box {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.5rem; padding: 1rem 1.25rem;
  border: 2px solid var(--accent); background: hsla(43,100%,58%,0.1);
  border-radius: 0.75rem; box-shadow: var(--shadow-sm);
}
.adac-icon {
  flex-shrink: 0; width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%; background: var(--accent); color: var(--accent-foreground);
}
.adac-title { font-size: 1rem; font-weight: 800; color: var(--foreground); }
@media (min-width: 768px) { .adac-title { font-size: 1.125rem; } }
.adac-sub { font-size: 0.75rem; color: var(--muted-foreground); }

.btn-cta {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--accent); color: var(--accent-foreground);
  padding: 1rem 2rem; border-radius: 0.75rem;
  font-size: 1.125rem; font-weight: 800;
  box-shadow: var(--shadow-lg); transition: transform 0.15s;
}
.btn-cta:hover { transform: scale(1.05); }
.btn-cta:active { transform: scale(0.95); }

.hero-cards { display: flex; flex-direction: column; gap: 1rem; }

.price-card-small {
  border: 2px solid hsla(43,100%,58%,0.3); background: var(--card);
  border-radius: 0.75rem; box-shadow: var(--shadow-md); overflow: hidden;
}
.price-card-small-header { background: hsla(43,100%,58%,0.1); padding: 0.75rem 1.25rem; }
.price-card-small-header p { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--accent); }
.price-card-small-body { padding: 1rem 1.25rem; }

.price-line { display: flex; align-items: baseline; gap: 0.25rem; margin-bottom: 0.25rem; }
.price-line .ab { font-size: 0.75rem; color: var(--muted-foreground); }
.price-line .num { font-size: 2.25rem; font-weight: 800; color: var(--foreground); }
.price-line .euro { font-size: 1.125rem; font-weight: 700; color: var(--foreground); }
.price-sub { margin-bottom: 0.75rem; font-size: 0.875rem; font-weight: 600; color: var(--foreground); }
.price-features { display: flex; flex-direction: column; gap: 0.375rem; }
.price-feature { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: var(--muted-foreground); }
.price-feature svg { flex-shrink: 0; width: 14px; height: 14px; color: var(--trust-green); }
.price-note { margin-top: 0.75rem; padding: 0.5rem; background: var(--section-alt); border-radius: 0.375rem; font-size: 0.6875rem; line-height: 1.5; color: var(--muted-foreground); }

.info-card { display: flex; gap: 0.75rem; align-items: flex-start; padding: 1rem; background: var(--card); border: 1px solid var(--border); border-radius: 0.75rem; box-shadow: var(--shadow-sm); }
.info-card-icon { flex-shrink: 0; margin-top: 0.125rem; width: 20px; height: 20px; }
.info-card-icon.primary { color: var(--primary); }
.info-card-icon.accent { color: var(--accent); }
.info-card h3 { font-size: 0.875rem; font-weight: 700; color: var(--foreground); }
.info-card p { font-size: 0.75rem; color: var(--muted-foreground); }

.tarik-card { display: flex; gap: 1rem; align-items: center; padding: 1rem; background: var(--card); border: 1px solid var(--border); border-radius: 0.75rem; box-shadow: var(--shadow-sm); }
.tarik-avatar-sm { width: 80px; height: 80px; border-radius: 50%; object-fit: cover; object-position: top; flex-shrink: 0; }
.tarik-card .name { font-size: 0.875rem; font-weight: 700; color: var(--foreground); }
.tarik-card .role { font-size: 0.75rem; color: var(--muted-foreground); }
.tarik-card .location { display: flex; align-items: center; gap: 0.25rem; font-size: 0.75rem; color: var(--muted-foreground); margin-top: 0.25rem; }
.tarik-card .location svg { width: 12px; height: 12px; }

/* PAYMENT */
.payment-section { border-block: 1px solid hsla(220,15%,90%,0.3); padding: 1.5rem 0; overflow: hidden; }
.payment-heading { text-align: center; margin-bottom: 1rem; font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted-foreground); }
.payment-marquee { position: relative; }
.payment-marquee::before, .payment-marquee::after { content: ''; position: absolute; top: 0; bottom: 0; width: 5rem; z-index: 1; pointer-events: none; }
.payment-marquee::before { left: 0; background: linear-gradient(to right, var(--background), transparent); }
.payment-marquee::after { right: 0; background: linear-gradient(to left, var(--background), transparent); }
.payment-track { display: flex; animation: payment-scroll 20s linear infinite; width: max-content; }
.payment-track > div { flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-inline: 1rem; }
.payment-track img { height: 40px; width: auto; object-fit: contain; }
@media (min-width: 768px) { .payment-track img { height: 48px; } }
@keyframes payment-scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* TRUST */
.trust-section { background: var(--background); padding: 4rem 1rem; }
@media (min-width: 768px) { .trust-section { padding-block: 5rem; } }
.trust-grid { display: grid; gap: 2.5rem; align-items: center; max-width: 64rem; margin: 0 auto; }
@media (min-width: 768px) { .trust-grid { grid-template-columns: 2fr 3fr; } }
.trust-photo-col { display: flex; flex-direction: column; align-items: center; text-align: center; }
.trust-photo { width: 192px; height: 192px; border-radius: 1rem; object-fit: cover; object-position: top; margin-bottom: 1rem; box-shadow: var(--shadow-lg); }
@media (min-width: 768px) { .trust-photo { width: 256px; height: 256px; } }
.trust-photo-col .name { font-size: 0.875rem; font-weight: 700; color: var(--foreground); }
.trust-photo-col .role { font-size: 0.75rem; color: var(--muted-foreground); }
.trust-photo-col .location { display: flex; align-items: center; gap: 0.25rem; margin-top: 0.25rem; font-size: 0.75rem; color: var(--muted-foreground); }
.trust-photo-col .location svg { width: 12px; height: 12px; }

.trust-text h2 { margin-bottom: 0.75rem; font-size: 1.5rem; color: var(--foreground); }
@media (min-width: 768px) { .trust-text h2 { font-size: 1.875rem; } }
.trust-text p { margin-bottom: 1rem; line-height: 1.625; color: var(--muted-foreground); }
.trust-text strong { color: var(--foreground); }

.trust-local { margin-top: 1.5rem; padding: 0.75rem; background: hsla(152,53%,40%,0.05); border: 1px solid hsla(152,53%,40%,0.2); border-radius: 0.5rem; }
.trust-local-row { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; }
.trust-local-row svg { width: 16px; height: 16px; color: var(--trust-green); }
.trust-local-row span { font-weight: 500; color: var(--foreground); }
.trust-local-sub { margin-top: 0.25rem; font-size: 0.75rem; color: var(--muted-foreground); }

.services { margin-top: 3.5rem; max-width: 64rem; margin-inline: auto; }
.services-title { text-align: center; font-size: 1.25rem; margin-bottom: 2rem; color: var(--foreground); }
@media (min-width: 768px) { .services-title { font-size: 1.5rem; } }
.services-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }
.service-card { padding: 1.25rem; background: var(--card); border: 1px solid var(--border); border-radius: 0.75rem; box-shadow: var(--shadow-sm); transition: box-shadow 0.2s; }
.service-card:hover { box-shadow: var(--shadow-md); }
.service-icon { display: inline-flex; padding: 0.625rem; margin-bottom: 0.75rem; background: hsla(192,93%,36%,0.1); border-radius: 0.5rem; }
.service-icon svg { width: 24px; height: 24px; color: var(--primary); }
.service-card h4 { margin-bottom: 0.5rem; font-size: 1rem; font-weight: 700; color: var(--foreground); }
.service-card p { font-size: 0.875rem; line-height: 1.625; color: var(--muted-foreground); }

/* TUEROEFFNUNG dark */
.tueroeffnung { position: relative; background: var(--header-dark); padding: 4rem 1rem; overflow: hidden; }
@media (min-width: 768px) { .tueroeffnung { padding-block: 5rem; } }
.tueroeffnung::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, hsla(192,93%,36%,0.1), transparent); pointer-events: none; }
.tueroeffnung-grid { position: relative; display: grid; gap: 2rem; align-items: center; max-width: 64rem; margin: 0 auto; }
@media (min-width: 768px) { .tueroeffnung-grid { grid-template-columns: 1fr 1fr; } }
.city-img-wrap { border-radius: 1rem; border: 1px solid rgba(255,255,255,0.1); overflow: hidden; }
.city-img { width: 100%; height: 256px; object-fit: cover; }
@media (min-width: 768px) { .city-img { height: 320px; } }

.tueroeffnung-text h2 { margin-bottom: 1rem; font-size: 1.5rem; color: #fff; }
@media (min-width: 768px) { .tueroeffnung-text h2 { font-size: 1.875rem; } }
.tueroeffnung-text p { margin-bottom: 1.5rem; color: rgba(255,255,255,0.75); line-height: 1.625; }

.tueroeffnung-badges { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.dark-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 0.75rem; background: rgba(255,255,255,0.1); border-radius: 0.5rem; }
.dark-badge img { width: 20px; height: 20px; object-fit: contain; }
.dark-badge .score { font-size: 0.75rem; font-weight: 700; color: #fff; }
.dark-badge .stars svg { width: 10px; height: 10px; }
.dark-badge-inner { display: flex; align-items: center; gap: 0.25rem; }

.btn-call-small { display: inline-flex; align-items: center; gap: 0.5rem; background: var(--accent); color: var(--accent-foreground); padding: 0.5rem 1rem; border-radius: 0.5rem; font-size: 0.875rem; font-weight: 700; box-shadow: var(--shadow); transition: transform 0.15s; }
.btn-call-small:hover { transform: scale(1.05); }

/* REVIEWS */
.reviews { background: var(--section-alt); padding: 4rem 1rem; }
@media (min-width: 768px) { .reviews { padding-block: 5rem; } }
.reviews-inner { max-width: 64rem; margin: 0 auto; }
.reviews-header { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; text-align: center; margin-bottom: 2.5rem; }
.score-big { display: flex; align-items: center; gap: 0.5rem; }
.score-big .num { font-size: 1.875rem; font-weight: 800; color: var(--foreground); }
.score-big .stars svg { width: 20px; height: 20px; }
.reviews-platforms { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.reviews-platforms .sep { color: rgba(0,0,0,0.4); }
.reviews-platforms .item { display: flex; align-items: center; gap: 0.375rem; }
.reviews-platforms img { width: 20px; height: 20px; object-fit: contain; }
.reviews-platforms span { font-size: 0.875rem; color: var(--muted-foreground); }

.reviews-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card { background: var(--card); border: 1px solid var(--border); border-radius: 0.75rem; padding: 1.25rem; box-shadow: var(--shadow-sm); }
.review-card-head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.review-avatar { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; background: var(--primary); color: var(--primary-foreground); border-radius: 50%; font-size: 0.875rem; font-weight: 700; flex-shrink: 0; }
.review-meta .name { font-size: 0.875rem; font-weight: 700; color: var(--foreground); }
.review-meta .date { font-size: 0.75rem; color: var(--muted-foreground); }
.review-card .review-stars { margin-bottom: 0.5rem; }
.review-card .review-stars svg { width: 14px; height: 14px; }
.review-card .review-text { font-size: 0.875rem; line-height: 1.625; color: var(--muted-foreground); }

/* PRICING */
.pricing { background: var(--background); padding: 4rem 1rem; }
@media (min-width: 768px) { .pricing { padding-block: 5rem; } }
.pricing-inner { max-width: 56rem; margin: 0 auto; }
.pricing h2 { text-align: center; margin-bottom: 0.75rem; font-size: 1.5rem; color: var(--foreground); }
@media (min-width: 768px) { .pricing h2 { font-size: 1.875rem; } }
.pricing-lead { max-width: 42rem; margin: 0 auto 2.5rem; text-align: center; line-height: 1.625; color: var(--muted-foreground); }
.pricing-lead strong { color: var(--foreground); }

.price-card-big { max-width: 36rem; margin: 0 auto; overflow: hidden; background: var(--card); border: 2px solid hsla(43,100%,58%,0.4); border-radius: 1rem; box-shadow: var(--shadow-lg); }
.price-card-big-header { background: var(--accent); padding: 1rem 1.5rem; text-align: center; }
.price-card-big-header p { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--accent-foreground); }
.price-card-big-body { padding: 2rem 1.5rem; text-align: center; }
.price-line-big { display: flex; align-items: baseline; justify-content: center; gap: 0.25rem; margin-bottom: 0.5rem; }
.price-line-big .ab { font-size: 0.875rem; color: var(--muted-foreground); }
.price-line-big .num { font-size: 3.75rem; font-weight: 800; color: var(--foreground); line-height: 1; }
.price-line-big .euro { font-size: 1.5rem; font-weight: 700; color: var(--foreground); }
.price-sub-big { margin-bottom: 1.5rem; font-size: 1rem; font-weight: 600; color: var(--foreground); }
.price-features-big { max-width: 20rem; margin: 0 auto 1.5rem; display: flex; flex-direction: column; gap: 0.75rem; text-align: left; }
.price-features-big .price-feature { font-size: 0.875rem; gap: 0.625rem; }
.price-features-big .price-feature svg { width: 16px; height: 16px; }
.adac-pill { display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; margin-bottom: 1.5rem; padding: 0.625rem 1rem; background: hsla(192,93%,36%,0.05); border-radius: 0.5rem; }
.adac-pill svg { width: 20px; height: 20px; color: var(--primary); }
.adac-pill span { font-size: 0.875rem; font-weight: 700; color: var(--primary); }
.price-note-big { max-width: 28rem; margin: 0 auto 1.5rem; padding: 0.75rem; background: var(--section-alt); border-radius: 0.5rem; font-size: 0.75rem; line-height: 1.5; color: var(--muted-foreground); }

/* FAQ */
.faq-section { background: var(--section-alt); padding: 4rem 1rem; }
@media (min-width: 768px) { .faq-section { padding-block: 5rem; } }
.faq-inner { max-width: 48rem; margin: 0 auto; }
.faq-pill { display: block; text-align: center; margin-bottom: 2rem; }
.faq-pill span { display: inline-block; padding: 0.375rem 1rem; border: 1px solid hsla(192,93%,36%,0.2); background: hsla(192,93%,36%,0.05); color: var(--primary); border-radius: 9999px; font-size: 0.75rem; font-weight: 700; }
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item { background: var(--card); border: 1px solid var(--border); border-radius: 0.75rem; box-shadow: var(--shadow-sm); overflow: hidden; }
.faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: 1rem 1.25rem; text-align: left; font-size: 0.875rem; font-weight: 700; color: var(--foreground); transition: background 0.15s; }
@media (min-width: 768px) { .faq-question { font-size: 1rem; } }
.faq-question:hover { background: var(--muted); }
.faq-question .chevron { flex-shrink: 0; width: 16px; height: 16px; transition: transform 0.2s; }
.faq-item.open .faq-question .chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; padding: 0 1.25rem; font-size: 0.875rem; line-height: 1.625; color: var(--muted-foreground); }
.faq-item.open .faq-answer { max-height: 500px; padding: 0 1.25rem 1rem; }

/* CONTACT */
.contact-section { background: var(--background); padding: 4rem 1rem; }
@media (min-width: 768px) { .contact-section { padding-block: 5rem; } }
.contact-grid { display: grid; gap: 2rem; align-items: center; max-width: 64rem; margin: 0 auto; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-text h2 { margin-bottom: 1rem; font-size: 1.5rem; color: var(--foreground); }
@media (min-width: 768px) { .contact-text h2 { font-size: 1.875rem; } }
.contact-text > p { margin-bottom: 1.5rem; line-height: 1.625; color: var(--muted-foreground); }
.contact-checks { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.contact-check { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }
.contact-check svg { width: 16px; height: 16px; flex-shrink: 0; }
.contact-check .ic-primary { color: var(--primary); }
.contact-check .ic-gold { color: var(--star-gold); }
.map-wrap { border: 1px solid var(--border); border-radius: 0.75rem; overflow: hidden; box-shadow: var(--shadow-md); }
.map-wrap iframe { display: block; width: 100%; height: 320px; border: 0; }

/* AREA */
.area-section { background: var(--section-alt); padding: 4rem 1rem; }
@media (min-width: 768px) { .area-section { padding-block: 5rem; } }
.area-inner { max-width: 64rem; margin: 0 auto; }
.area-section h2 { text-align: center; margin-bottom: 0.75rem; font-size: 1.5rem; color: var(--foreground); }
@media (min-width: 768px) { .area-section h2 { font-size: 1.875rem; } }
.area-lead { max-width: 42rem; margin: 0 auto 2.5rem; text-align: center; color: var(--muted-foreground); }
.area-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .area-grid { grid-template-columns: 1fr 1fr; } }
.area-card { background: var(--card); border: 1px solid var(--border); border-radius: 0.75rem; padding: 1.5rem; box-shadow: var(--shadow-sm); }
.area-card h3 { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; font-size: 1.125rem; font-weight: 700; color: var(--foreground); }
.area-card h3 svg { width: 20px; height: 20px; flex-shrink: 0; }
.area-card h3 .ic-primary { color: var(--primary); }
.area-card h3 .ic-green { color: var(--trust-green); }
.area-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip-primary { padding: 0.375rem 0.75rem; background: hsla(192,93%,36%,0.1); color: var(--primary); border-radius: 9999px; font-size: 0.875rem; font-weight: 500; }
.chip-muted { padding: 0.375rem 0.75rem; border: 1px solid var(--border); background: var(--background); color: var(--muted-foreground); border-radius: 9999px; font-size: 0.875rem; font-weight: 500; }

/* FOOTER */
.site-footer { background: var(--header-dark); padding: 2.5rem 1rem; }
.footer-inner { max-width: 64rem; margin: 0 auto; }
.footer-grid { display: grid; gap: 2rem; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(4, 1fr); } }
.footer-col h4 { margin-bottom: 0.5rem; font-size: 0.875rem; font-weight: 700; color: #fff; }
.footer-logo { height: 32px; width: auto; filter: brightness(0) invert(1); margin-bottom: 0.75rem; }
.footer-stars { display: flex; align-items: center; gap: 0.375rem; }
.footer-stars .stars svg { width: 12px; height: 12px; }
.footer-stars span { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
.footer-col p, .footer-col .links { font-size: 0.75rem; line-height: 1.625; color: rgba(255,255,255,0.5); }
.footer-col p a { color: var(--accent); }
.footer-col p a:hover { text-decoration: underline; }
.footer-col .links { display: flex; flex-direction: column; gap: 0.25rem; }
.footer-col .links a { transition: color 0.15s; }
.footer-col .links a:hover { color: #fff; }
.footer-copy { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; font-size: 0.75rem; color: rgba(255,255,255,0.3); }

/* MOBILE CTA */
.mobile-cta { position: fixed; bottom: 0; left: 0; right: 0; z-index: 50; display: block; padding: 0.75rem; background: var(--accent); border-top: 1px solid var(--border); box-shadow: var(--shadow-2xl); }
@media (min-width: 768px) { .mobile-cta { display: none; } }
.mobile-cta a { display: flex; align-items: center; justify-content: center; gap: 0.5rem; font-size: 1rem; font-weight: 800; color: var(--accent-foreground); flex-wrap: wrap; }
.mobile-cta a svg { width: 20px; height: 20px; }
.mobile-cta a .extra { font-size: 0.75rem; font-weight: 600; opacity: 0.8; }
.mobile-cta .pulse-dot { width: 12px; height: 12px; }
.mobile-cta .pulse-dot::after { width: 12px; height: 12px; }

/* COOKIE */
.cookie-overlay { position: fixed; inset: 0; z-index: 100; display: none; align-items: flex-end; justify-content: center; background: hsla(220,25%,18%,0.4); backdrop-filter: blur(4px); }
.cookie-overlay.show { display: flex; }
@media (min-width: 640px) { .cookie-overlay { align-items: center; } }
.cookie-modal { width: 100%; max-width: 32rem; margin: 0 1rem 1rem; padding: 1.5rem; background: var(--card); border: 1px solid var(--border); border-radius: 1rem; box-shadow: var(--shadow-2xl); }
@media (min-width: 640px) { .cookie-modal { margin-bottom: 0; } }
.cookie-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.cookie-head h3 { font-size: 1.125rem; font-weight: 800; color: var(--foreground); }
.cookie-close { padding: 0.25rem; color: var(--muted-foreground); border-radius: 0.375rem; line-height: 0; }
.cookie-close:hover { color: var(--foreground); }
.cookie-close svg { width: 20px; height: 20px; }
.cookie-text { margin-bottom: 1rem; font-size: 0.875rem; line-height: 1.625; color: var(--muted-foreground); }
.cookie-details { display: none; margin-bottom: 1rem; padding: 1rem; background: var(--section-alt); border: 1px solid var(--border); border-radius: 0.5rem; font-size: 0.875rem; }
.cookie-details.open { display: block; }
.cookie-details > div + div { margin-top: 0.75rem; }
.cookie-details p:first-child { font-weight: 700; color: var(--foreground); }
.cookie-details p:last-child { font-size: 0.75rem; color: var(--muted-foreground); }
.cookie-actions { display: flex; flex-direction: column; gap: 0.5rem; }
@media (min-width: 640px) { .cookie-actions { flex-direction: row; align-items: center; justify-content: space-between; } }
.cookie-buttons { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.btn-cookie-primary { padding: 0.625rem 1.25rem; background: var(--accent); color: var(--accent-foreground); border-radius: 0.5rem; font-size: 0.875rem; font-weight: 700; box-shadow: var(--shadow); transition: transform 0.15s; }
.btn-cookie-primary:hover { transform: scale(1.05); }
.btn-cookie-secondary { padding: 0.625rem 1.25rem; background: var(--card); border: 1px solid var(--border); color: var(--foreground); border-radius: 0.5rem; font-size: 0.875rem; font-weight: 700; transition: background 0.15s; }
.btn-cookie-secondary:hover { background: var(--muted); }
.cookie-links { display: flex; align-items: center; gap: 0.75rem; font-size: 0.75rem; }
.cookie-toggle-details { color: var(--primary); }
.cookie-toggle-details:hover { text-decoration: underline; }
.cookie-links a { color: var(--muted-foreground); }
.cookie-links a:hover { text-decoration: underline; }

/* SCROLL ANIMATIONS */
.animate-on-scroll { opacity: 0; transform: translateY(24px); transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1); }
.animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
.animate-on-scroll.delay-100 { transition-delay: 0.1s; }
.animate-on-scroll.delay-200 { transition-delay: 0.2s; }
.animate-on-scroll.delay-300 { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) {
  .animate-on-scroll { opacity: 1; transform: none; transition: none; }
  .pulse-dot::before { animation: none; }
  .payment-track { animation: none; }
}

/* LEGAL PAGES */
.legal-page { background: var(--background); padding: 3rem 1rem; min-height: 60vh; }
.legal-inner { max-width: 56rem; margin: 0 auto; }
.legal-page h1 { margin-bottom: 2rem; font-size: 1.875rem; font-weight: 800; color: var(--foreground); }
.legal-page section + section { margin-top: 1.5rem; }
.legal-page h2 { margin-top: 1.5rem; margin-bottom: 0.75rem; font-size: 1.25rem; font-weight: 700; color: var(--foreground); }
.legal-page h3 { margin-top: 1rem; margin-bottom: 0.5rem; font-size: 1.125rem; font-weight: 600; color: var(--foreground); }
.legal-page h4 { margin-top: 0.5rem; margin-bottom: 0.25rem; font-weight: 600; color: var(--foreground); }
.legal-page p, .legal-page ul { margin-bottom: 0.75rem; color: var(--muted-foreground); line-height: 1.625; }
.legal-page ul { padding-left: 1.5rem; list-style: disc; }
.legal-page ul li { margin-bottom: 0.5rem; }
.legal-page strong { color: var(--foreground); font-weight: 600; }
.legal-page a { color: var(--primary); word-break: break-word; }
.legal-page a:hover { text-decoration: underline; }
.legal-page hr { margin: 1.5rem 0; border: 0; border-top: 1px solid var(--border); }
.legal-page .uppercase-warn { font-weight: 700; font-size: 0.875rem; text-transform: uppercase; color: var(--foreground); }

/* 404 */
.notfound { min-height: 70vh; display: flex; align-items: center; justify-content: center; background: var(--muted); padding: 2rem; text-align: center; }
.notfound-inner h1 { margin-bottom: 1rem; font-size: 2.5rem; font-weight: 700; }
.notfound-inner p { margin-bottom: 1rem; font-size: 1.25rem; color: var(--muted-foreground); }
.notfound-inner a { color: var(--primary); text-decoration: underline; }
