/* ============================================
   Claryon Reinigung GmbH – Modern Minimal CSS
   ============================================ */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #fafafa;
  --white: #ffffff;
  --ink: #1a1a1a;
  --muted: #6b7280;
  --light: #f3f4f6;
  --brand: #0c7ef5;
  --brand-dark: #0960c0;
  --brand-light: #e8f2ff;
  --border: #e5e7eb;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06);
  --shadow: 0 4px 20px rgba(0,0,0,.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.1);
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --transition: .25s ease;
  --max-w: 1100px;
}

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.7;
  font-size: 16px;
}

a { color: var(--brand); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--brand-dark); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; letter-spacing: -.02em; }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
h3 { font-size: 1.15rem; }
p { color: var(--muted); }

/* --- Layout --- */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }

/* --- Header --- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header .container {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 700; font-size: 1.05rem; color: var(--ink);
}
.logo img { width: 64px; height: 64px; border-radius: 12px; }

.nav { display: flex; align-items: center; gap: 32px; }
.nav a {
  color: var(--muted); font-size: .9rem; font-weight: 500;
  transition: color var(--transition); position: relative;
}
.nav a:hover, .nav a.active { color: var(--ink); }
.nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--brand); border-radius: 1px;
  transform: scaleX(0); transition: transform var(--transition);
}
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--ink); color: var(--white) !important;
  padding: 10px 22px; border-radius: 50px; font-size: .88rem;
  font-weight: 600; transition: all var(--transition);
}
.nav-cta:hover { background: var(--brand); transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 8px;
}
.hamburger span {
  display: block; width: 22px; height: 2px; background: var(--ink);
  border-radius: 2px; transition: all .3s ease;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile Nav */
.mobile-nav {
  display: none; position: fixed; top: 68px; left: 0; right: 0;
  background: #ffffff; padding: 24px 24px 32px;
  flex-direction: column; gap: 8px;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  color: var(--ink); font-size: 1.1rem; font-weight: 500;
  padding: 14px 0; border-bottom: 1px solid var(--border);
}
.mobile-nav .nav-cta {
  display: inline-block; text-align: center;
  margin-top: 16px; border-bottom: none;
}

@media (max-width: 768px) {
  .nav { display: none; }
  .hamburger { display: flex; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-size: .95rem;
  font-weight: 600; border: none; cursor: pointer;
  transition: all var(--transition); font-family: var(--font);
}
.btn-primary {
  background: var(--brand); color: var(--white);
}
.btn-primary:hover { background: var(--brand-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline {
  background: transparent; color: var(--ink);
  border: 2px solid var(--border);
}
.btn-outline:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-dark {
  background: var(--ink); color: var(--white);
}
.btn-dark:hover { background: #333; color: var(--white); transform: translateY(-2px); }

/* --- Hero --- */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(135deg, var(--white) 0%, var(--brand-light) 100%);
  position: relative; overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; top: -50%; right: -20%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(12,126,245,.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero .container { position: relative; }
.hero-split {
  display: flex; align-items: center; gap: 60px;
}
.hero-content { max-width: 640px; flex: 1; }
.hero-image {
  flex-shrink: 0; text-align: center;
}
.hero-image img {
  width: 220px; height: 220px; border-radius: 50%;
  object-fit: cover; border: 5px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.hero-image-caption {
  display: block; margin-top: 14px;
  font-weight: 600; font-size: .95rem; color: var(--ink);
  line-height: 1.4;
}
.hero-image-caption small {
  font-weight: 400; font-size: .82rem; color: var(--muted);
}
@media (max-width: 768px) {
  .hero-split { flex-direction: column-reverse; gap: 32px; text-align: center; }
  .hero-image img { width: 160px; height: 160px; }
  .hero-actions { justify-content: center; }
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--white); border: 1px solid var(--border);
  padding: 6px 16px; border-radius: 50px; font-size: .82rem;
  color: var(--muted); font-weight: 500; margin-bottom: 24px;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: #22c55e; }
.hero h1 { margin-bottom: 20px; color: var(--ink); }
.hero h1 span { color: var(--brand); }
.hero p { font-size: 1.15rem; margin-bottom: 36px; max-width: 520px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* --- Trust Bar --- */
.trust-bar {
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.trust-bar .container {
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: .88rem; color: var(--muted); font-weight: 500;
}
.trust-item svg { width: 18px; height: 18px; color: var(--brand); flex-shrink: 0; }

/* --- Section Headers --- */
.section-label {
  display: inline-block; font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .08em;
  color: var(--brand); margin-bottom: 12px;
}
.section-title { margin-bottom: 16px; }
.section-desc { max-width: 560px; font-size: 1.05rem; }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-desc { margin: 0 auto; }

/* --- KPI Grid --- */
.kpi-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.kpi-card {
  text-align: center; padding: 32px 20px;
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.kpi-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.kpi-number {
  font-size: 2rem; font-weight: 800; color: var(--brand);
  margin-bottom: 4px; letter-spacing: -.03em;
}
.kpi-label { font-size: .85rem; color: var(--muted); font-weight: 500; }

@media (max-width: 768px) { .kpi-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .kpi-grid { grid-template-columns: 1fr; } }

/* --- Services Grid --- */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.service-card {
  padding: 32px 28px; background: var(--white);
  border-radius: var(--radius); border: 1px solid var(--border);
  transition: all var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brand); }
.service-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--brand-light); display: flex;
  align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.service-icon svg { width: 22px; height: 22px; color: var(--brand); }
.service-card h3 { margin-bottom: 8px; }
.service-card p { font-size: .9rem; }

@media (max-width: 768px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .services-grid { grid-template-columns: 1fr; } }

/* --- Process Steps --- */
.process-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px;
  position: relative;
}
.process-grid::before {
  content: ''; position: absolute; top: 36px;
  left: calc(16.67% + 24px); right: calc(16.67% + 24px);
  height: 2px; background: var(--border);
}
.process-step { text-align: center; position: relative; }
.step-number {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--brand); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem;
  margin: 0 auto 18px; position: relative; z-index: 1;
}
.process-step h3 { margin-bottom: 8px; }
.process-step p { font-size: .9rem; }

@media (max-width: 640px) {
  .process-grid { grid-template-columns: 1fr; gap: 24px; }
  .process-grid::before { display: none; }
}

/* --- Testimonials --- */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.testimonial-card {
  padding: 32px; background: var(--white);
  border-radius: var(--radius); border: 1px solid var(--border);
}
.stars { color: #f59e0b; font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: .95rem; color: var(--ink); font-style: italic;
  margin-bottom: 16px; line-height: 1.6;
}
.testimonial-author { font-size: .82rem; color: var(--muted); font-weight: 500; }

@media (max-width: 768px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* --- About Story --- */
.about-story {
  display: flex; align-items: center; gap: 48px;
}
.about-story-text { flex: 1; max-width: 520px; }
.about-story-img {
  flex-shrink: 0;
}
.about-story-img img {
  width: 320px; height: auto; border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
@media (max-width: 768px) {
  .about-story { flex-direction: column; gap: 32px; }
  .about-story-img img { width: 100%; max-width: 300px; }
}

/* --- Values Grid --- */
.values-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.value-card {
  padding: 32px; background: var(--white);
  border-radius: var(--radius); border: 1px solid var(--border);
  transition: all var(--transition);
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.value-card h3 { margin-bottom: 8px; }
.value-card p { font-size: .9rem; }

@media (max-width: 640px) { .values-grid { grid-template-columns: 1fr; } }

/* --- Team --- */
.team-grid {
  display: flex; justify-content: center; gap: 40px; flex-wrap: wrap;
}
.team-card { text-align: center; max-width: 240px; }
.team-img {
  width: 160px; height: 160px; border-radius: 50%;
  object-fit: cover; margin: 0 auto 16px;
  border: 4px solid var(--border);
  transition: border-color var(--transition);
}
.team-card:hover .team-img { border-color: var(--brand); }
.team-card h3 { margin-bottom: 4px; font-size: 1.05rem; }
.team-card p { font-size: .85rem; }

/* --- Before/After Gallery --- */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.gallery-item {
  position: relative; border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 4/3; cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-label {
  position: absolute; top: 12px; left: 12px;
  background: var(--ink); color: var(--white);
  padding: 4px 12px; border-radius: 50px;
  font-size: .72rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .05em;
}

@media (max-width: 768px) { .gallery-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .gallery-grid { grid-template-columns: 1fr; } }

/* --- Before/After Slideshow --- */
.slideshow {
  position: relative; max-width: 900px; margin: 0 auto;
}
.slideshow-track {
  overflow: hidden; border-radius: var(--radius);
}
.slide {
  display: none;
}
.slide.active { display: block; }

.ba-sidebyside {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.ba-side {
  position: relative; border-radius: var(--radius);
  overflow: hidden; aspect-ratio: 4/3;
}
.ba-side img {
  width: 100%; height: 100%; object-fit: cover;
}
.ba-label {
  position: absolute; top: 12px; left: 12px; z-index: 2;
  background: var(--ink); color: var(--white);
  padding: 5px 14px; border-radius: 50px;
  font-size: .75rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .05em;
}

.slide-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--white); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; z-index: 5;
  box-shadow: var(--shadow); transition: all var(--transition);
}
.slide-btn:hover { background: var(--brand); border-color: var(--brand); color: var(--white); }
.slide-btn svg { width: 20px; height: 20px; }
.slide-prev { left: -22px; }
.slide-next { right: -22px; }

.slide-counter {
  text-align: center; margin-top: 16px;
  font-size: .9rem; color: var(--muted); font-weight: 500;
}

@media (max-width: 768px) {
  .slide-prev { left: 8px; }
  .slide-next { right: 8px; }
  .slideshow { max-width: 100%; }
  .ba-sidebyside { gap: 8px; }
}
@media (max-width: 480px) {
  .ba-sidebyside { grid-template-columns: 1fr; }
}

/* --- Pricing --- */
.pricing-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.pricing-card {
  padding: 36px 28px; background: var(--white);
  border-radius: var(--radius); border: 1px solid var(--border);
  transition: all var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.pricing-card.featured {
  border-color: var(--brand); position: relative;
}
.pricing-card.featured::before {
  content: 'Beliebt'; position: absolute; top: -12px; left: 24px;
  background: var(--brand); color: var(--white);
  padding: 4px 14px; border-radius: 50px;
  font-size: .75rem; font-weight: 600;
}
.pricing-label { font-size: .82rem; color: var(--muted); font-weight: 500; margin-bottom: 8px; }
.pricing-price {
  font-size: 2rem; font-weight: 800; color: var(--ink);
  margin-bottom: 4px; letter-spacing: -.03em;
}
.pricing-unit { font-size: .85rem; color: var(--muted); margin-bottom: 20px; }
.pricing-card p { font-size: .9rem; margin-bottom: 20px; }
.pricing-card .btn { width: 100%; justify-content: center; }

@media (max-width: 768px) { .pricing-grid { grid-template-columns: 1fr; } }

/* --- FAQ --- */
.faq-list { max-width: 700px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item summary {
  padding: 20px 0; font-weight: 600; font-size: .95rem;
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center;
}
.faq-item summary::after {
  content: '+'; font-size: 1.3rem; color: var(--muted);
  transition: transform var(--transition);
}
.faq-item[open] summary::after { content: '−'; }
.faq-item .faq-answer { padding: 0 0 20px; font-size: .9rem; color: var(--muted); }

/* --- Comparison --- */
.comparison {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.comparison-col {
  padding: 36px; border-radius: var(--radius);
}
.comparison-col.good {
  background: var(--brand-light); border: 1px solid rgba(12,126,245,.15);
}
.comparison-col.standard {
  background: var(--light); border: 1px solid var(--border);
}
.comparison-col h3 { margin-bottom: 20px; }
.comparison-col li {
  padding: 8px 0; font-size: .9rem; color: var(--muted);
  display: flex; align-items: flex-start; gap: 10px;
}
.comparison-col.good li::before { content: '✓'; color: var(--brand); font-weight: 700; }
.comparison-col.standard li::before { content: '×'; color: #9ca3af; font-weight: 700; }

@media (max-width: 640px) { .comparison { grid-template-columns: 1fr; } }

/* --- Forms --- */
.form-section { background: var(--white); }
.form-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  max-width: 640px;
}
.form-grid .full { grid-column: 1 / -1; }

.field { display: flex; flex-direction: column; }
.field label {
  font-size: .85rem; font-weight: 600; color: var(--ink);
  margin-bottom: 6px;
}
.field input, .field textarea, .field select {
  padding: 12px 16px; border: 1px solid var(--border);
  border-radius: var(--radius-sm); font-size: .95rem;
  font-family: var(--font); transition: border-color var(--transition);
  background: var(--bg); color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(12,126,245,.1);
}
.field textarea { resize: vertical; min-height: 120px; }

.consent-label {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .85rem; color: var(--muted); cursor: pointer;
}
.consent-label input[type="checkbox"] {
  margin-top: 3px; accent-color: var(--brand);
}

.hp { position: absolute; left: -9999px; }

@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

/* --- CTA Band --- */
.cta-band {
  background: var(--ink); color: var(--white); padding: 64px 0;
  text-align: center;
}
.cta-band h2 { color: var(--white); margin-bottom: 12px; }
.cta-band p { color: rgba(255,255,255,.7); margin-bottom: 28px; font-size: 1.05rem; }
.cta-band .btn-primary { background: var(--brand); }

/* --- Page Header --- */
.page-header {
  padding: 140px 0 60px;
  background: linear-gradient(135deg, var(--white) 0%, var(--brand-light) 100%);
  text-align: center;
}
.page-header h1 { margin-bottom: 12px; }
.page-header p { max-width: 520px; margin: 0 auto; font-size: 1.1rem; }

.breadcrumbs {
  display: flex; justify-content: center; gap: 8px;
  margin-bottom: 24px; font-size: .85rem;
}
.breadcrumbs a { color: var(--muted); }
.breadcrumbs span { color: var(--muted); }
.breadcrumbs .current { color: var(--ink); font-weight: 500; }

/* --- Contact Info --- */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: start;
}
.contact-info-card {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid var(--border);
}
.contact-info-card:last-child { border-bottom: none; }
.contact-info-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--brand-light); display: flex;
  align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-icon svg { width: 20px; height: 20px; color: var(--brand); }
.contact-info-card h4 { font-size: .9rem; margin-bottom: 2px; }
.contact-info-card p { font-size: .9rem; }

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* --- Footer --- */
.footer {
  background: var(--ink); color: rgba(255,255,255,.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 12px; }
.footer-brand p { font-size: .9rem; line-height: 1.7; }
.footer h4 {
  color: var(--white); font-size: .85rem; text-transform: uppercase;
  letter-spacing: .06em; margin-bottom: 16px;
}
.footer a { color: rgba(255,255,255,.6); font-size: .9rem; transition: color var(--transition); }
.footer a:hover { color: var(--white); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-contact { display: flex; flex-direction: column; gap: 12px; }
.footer-contact a { display: flex; align-items: center; gap: 8px; }
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .82rem; flex-wrap: wrap; gap: 8px;
}
.footer-bottom a { font-size: .82rem; }

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* --- Legal Pages --- */
.legal-content { max-width: 720px; margin: 0 auto; }
.legal-content h2 { font-size: 1.3rem; margin: 36px 0 12px; }
.legal-content h2:first-child { margin-top: 0; }
.legal-content p { margin-bottom: 16px; font-size: .95rem; }
.legal-content ul { margin-bottom: 16px; padding-left: 20px; }
.legal-content li { color: var(--muted); font-size: .95rem; margin-bottom: 8px; list-style: disc; }

/* --- Modal --- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  display: flex; align-items: center; justify-content: center;
  z-index: 2000; opacity: 0; pointer-events: none;
  transition: opacity .3s ease;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
  background: var(--white); border-radius: var(--radius);
  padding: 48px; text-align: center; max-width: 420px;
  width: 90%; transform: scale(.9);
  transition: transform .3s ease;
}
.modal-overlay.active .modal { transform: scale(1); }
.modal-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: #dcfce7; display: flex;
  align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.modal-icon svg { width: 28px; height: 28px; color: #22c55e; }
.modal h3 { margin-bottom: 8px; }
.modal p { font-size: .9rem; margin-bottom: 24px; }

/* --- Guarantee Cards --- */
.guarantee-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.guarantee-card {
  padding: 28px; background: var(--white);
  border-radius: var(--radius); border: 1px solid var(--border);
  text-align: center;
}
.guarantee-card svg {
  width: 32px; height: 32px; color: var(--brand); margin-bottom: 12px;
}
.guarantee-card h3 { margin-bottom: 6px; }
.guarantee-card p { font-size: .85rem; }

@media (max-width: 640px) { .guarantee-grid { grid-template-columns: 1fr; } }

/* --- Animations --- */
.fade-in {
  opacity: 0; transform: translateY(20px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* --- Map --- */
.map-container {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); margin-top: 40px;
}
.map-container iframe { width: 100%; height: 350px; border: 0; }
