@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

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

html { scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; background: #e5e7eb; color: #111827; -webkit-font-smoothing: antialiased; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ── Colors ── */
:root {
  --primary-50: #eff6ff;
  --primary-100: #dbeafe;
  --primary-200: #bfdbfe;
  --primary-300: #93c5fd;
  --primary-400: #60a5fa;
  --primary-500: #3b82f6;
  --primary-600: #2563eb;
  --primary-700: #1d4ed8;
  --primary-800: #1e40af;
  --primary-900: #1e3a8a;
  --accent-400: #34d399;
  --accent-500: #10b981;
  --accent-600: #059669;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-400: #374151;
  --gray-500: #1f2937;
  --gray-600: #1f2937;
  --gray-700: #111827;
  --gray-800: #0f172a;
  --gray-900: #030712;
  --gray-950: #030712;
}

/* ── Layout ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1rem; }
@media (min-width: 640px) { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

.min-h-screen { min-height: 100vh; }
.flex-col { display: flex; flex-direction: column; }
.flex-1 { flex: 1; }

/* ── Buttons ── */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; font-weight: 600; padding: 0.75rem 1.5rem; border-radius: 0.75rem; transition: all 0.2s; cursor: pointer; font-size: 0.875rem; border: none; }
.btn-primary { background: var(--primary-600); color: #fff; box-shadow: 0 2px 8px rgba(37,99,235,0.25); }
.btn-primary:hover { background: var(--primary-700); box-shadow: 0 4px 12px rgba(37,99,235,0.35); transform: translateY(-1px); }
.btn-outline { border: 2px solid var(--primary-600); color: var(--primary-600); background: transparent; }
.btn-outline:hover { background: var(--primary-600); color: #fff; }
.btn-white { background: #fff; color: var(--primary-700); box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.btn-white:hover { background: var(--primary-50); }

/* ── Card ── */
.card { background: #dde0e4; border-radius: 1rem; box-shadow: 0 1px 3px rgba(0,0,0,0.06); border: 1px solid var(--gray-100); transition: box-shadow 0.3s; }
.card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.1); }

/* ── NAVBAR ── */
.navbar { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); box-shadow: 0 1px 3px rgba(0,0,0,0.06); border-bottom: 1px solid var(--gray-100); }
.navbar-inner { display: flex; align-items: center; justify-content: space-between; height: 4rem; }
.navbar-logo img { height: 3.5rem; width: auto; }
.navbar-nav { display: none; align-items: center; gap: 0.125rem; }
@media (min-width: 1024px) { .navbar-nav { display: flex; } }
.navbar-actions { display: none; align-items: center; gap: 0.75rem; }
@media (min-width: 1024px) { .navbar-actions { display: flex; } }
.navbar-phone { display: flex; align-items: center; gap: 0.375rem; font-size: 0.875rem; color: var(--gray-500); transition: color 0.2s; }
.navbar-phone:hover { color: var(--primary-700); }
.navbar-phone svg { width: 1rem; height: 1rem; }

.nav-link { display: flex; align-items: center; gap: 0.25rem; padding: 0.5rem 1rem; border-radius: 0.5rem; font-size: 0.875rem; font-weight: 500; color: var(--gray-600); transition: all 0.2s; }
.nav-link:hover, .nav-link.active { color: var(--primary-700); background: var(--gray-50); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-menu { display: none; position: absolute; top: 100%; left: 0; margin-top: 0; border-top: 0.5rem solid transparent; background: #fff; background-clip: padding-box; border-radius: 0.75rem; box-shadow: 0 8px 24px rgba(0,0,0,0.12); border-bottom: 1px solid var(--gray-100); border-left: 1px solid var(--gray-100); border-right: 1px solid var(--gray-100); padding: 0.375rem 0; min-width: 200px; }
.nav-dropdown:hover .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a { display: block; padding: 0.625rem 1rem; font-size: 0.875rem; color: var(--gray-600); transition: all 0.2s; }
.nav-dropdown-menu a:hover, .nav-dropdown-menu a.active { color: var(--primary-700); background: var(--gray-50); font-weight: 500; }
.chevron { width: 0.875rem; height: 0.875rem; transition: transform 0.2s; }
.nav-dropdown:hover .chevron { transform: rotate(180deg); }

/* Mobile toggle */
.navbar-toggle { display: flex; padding: 0.5rem; border-radius: 0.5rem; color: var(--gray-500); background: none; border: none; cursor: pointer; transition: background 0.2s; }
.navbar-toggle:hover { background: var(--gray-100); }
@media (min-width: 1024px) { .navbar-toggle { display: none; } }

/* Mobile menu */
.mobile-menu { display: none; border-top: 1px solid var(--gray-100); background: #fff; padding: 0.75rem 1rem; }
.mobile-menu.open { display: block; }
.mobile-menu-item { display: block; padding: 0.625rem 0.75rem; border-radius: 0.5rem; font-size: 0.875rem; font-weight: 500; color: var(--gray-700); transition: background 0.2s; }
.mobile-menu-item:hover, .mobile-menu-item.active { background: var(--gray-50); color: var(--primary-700); }
.mobile-submenu-toggle { display: flex; align-items: center; justify-content: space-between; width: 100%; padding: 0.625rem 0.75rem; border-radius: 0.5rem; font-size: 0.875rem; font-weight: 500; color: var(--gray-700); background: none; border: none; cursor: pointer; transition: background 0.2s; }
.mobile-submenu-toggle:hover { background: var(--gray-50); }
.mobile-submenu { display: none; margin-left: 1rem; margin-top: 0.125rem; }
.mobile-submenu.open { display: block; }
.mobile-submenu a { display: block; padding: 0.5rem 0.75rem; border-radius: 0.5rem; font-size: 0.875rem; color: var(--gray-600); transition: all 0.2s; }
.mobile-submenu a:hover, .mobile-submenu a.active { color: var(--primary-700); background: var(--gray-50); font-weight: 500; }
.mobile-divider { border-top: 1px solid var(--gray-100); margin-top: 0.75rem; padding-top: 0.75rem; display: flex; flex-direction: column; gap: 0.5rem; }

/* ── HERO ── */
.hero { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--gray-950) 0%, var(--primary-900, #1e3a8a) 60%, var(--primary-800, #1e40af) 100%); color: #fff; padding: 3.5rem 0 5rem; }
@media (min-width: 640px) { .hero { padding: 5rem 0 6.5rem; } }
@media (min-width: 1024px) { .hero { padding: 6rem 0 8rem; } }
.hero-blob-1 { position: absolute; top: -10rem; left: -10rem; width: 600px; height: 600px; border-radius: 50%; background: rgba(37,99,235,0.08); filter: blur(80px); pointer-events: none; }
.hero-blob-2 { position: absolute; bottom: -10rem; right: -5rem; width: 500px; height: 500px; border-radius: 50%; background: rgba(96,165,250,0.07); filter: blur(80px); pointer-events: none; }
.hero-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); border-radius: 9999px; padding: 0.375rem 0.875rem; font-size: 0.8rem; font-weight: 500; color: #bfdbfe; margin-bottom: 1.25rem; }
@media (min-width: 640px) { .hero-badge { font-size: 0.875rem; margin-bottom: 1.75rem; padding: 0.375rem 1rem; } }
.hero-badge svg { width: 0.875rem; height: 0.875rem; color: #fde68a; }
.hero h1 { font-size: clamp(2rem, 8vw, 3.75rem); font-weight: 900; line-height: 1.1; letter-spacing: -0.025em; margin-bottom: 1rem; }
@media (min-width: 640px) { .hero h1 { margin-bottom: 1.5rem; } }
.hero h1 span { color: #93c5fd; }
.hero-tagline { font-size: 1.1rem; color: rgba(219,234,254,0.8); margin-bottom: 0.625rem; font-weight: 300; }
@media (min-width: 640px) { .hero-tagline { font-size: 1.25rem; margin-bottom: 0.75rem; } }
.hero-sub { font-size: 0.9375rem; color: rgba(191,219,254,0.7); margin-bottom: 2rem; max-width: 40rem; line-height: 1.7; }
@media (min-width: 640px) { .hero-sub { font-size: 1rem; margin-bottom: 2.5rem; } }
.hero-actions { display: flex; flex-direction: column; gap: 0.625rem; margin-bottom: 2rem; }
@media (min-width: 480px) { .hero-actions { flex-direction: row; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2.5rem; } }
.hero-actions .btn-white, .hero-actions .btn-ghost { width: 100%; justify-content: center; }
@media (min-width: 480px) { .hero-actions .btn-white, .hero-actions .btn-ghost { width: auto; justify-content: flex-start; } }
.btn-ghost { display: inline-flex; align-items: center; gap: 0.5rem; border: 1px solid rgba(255,255,255,0.25); color: #fff; font-weight: 500; padding: 0.75rem 1.5rem; border-radius: 0.75rem; font-size: 0.875rem; transition: all 0.2s; background: transparent; }
.btn-ghost:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }
.hero-trust { display: flex; flex-wrap: wrap; align-items: center; gap: 0.75rem; font-size: 0.8125rem; color: rgba(147,197,253,0.8); }
@media (min-width: 640px) { .hero-trust { gap: 1.25rem; font-size: 0.875rem; } }
.hero-trust span { display: flex; align-items: center; gap: 0.375rem; }
.hero-trust svg { width: 1rem; height: 1rem; }
.hero-prowin-card { display: none; flex-shrink: 0; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18); border-radius: 1.25rem; padding: 2rem 2.25rem; backdrop-filter: blur(8px); }
@media (min-width: 1024px) { .hero-prowin-card { display: block; } }

/* Page Hero */
.page-hero { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--gray-950) 0%, #1e3a8a 60%, #1e40af 100%); color: #fff; padding: 5rem 0; }
.page-hero-blob-1 { position: absolute; top: -8rem; left: -8rem; width: 500px; height: 500px; border-radius: 50%; background: rgba(37,99,235,0.1); filter: blur(80px); pointer-events: none; }
.page-hero-blob-2 { position: absolute; bottom: -8rem; right: -8rem; width: 400px; height: 400px; border-radius: 50%; background: rgba(96,165,250,0.1); filter: blur(80px); pointer-events: none; }
.page-hero-eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #93c5fd; margin-bottom: 0.75rem; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; line-height: 1.15; margin-bottom: 1rem; max-width: 48rem; }
.page-hero p { font-size: 1.125rem; color: rgba(219,234,254,0.8); max-width: 40rem; line-height: 1.7; }

/* ── SECTIONS ── */
section { padding: 3rem 0; }
@media (min-width: 640px) { section { padding: 4rem 0; } }
@media (min-width: 1024px) { section { padding: 5rem 0; } }
.section-eyebrow { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--primary-600); margin-bottom: 0.5rem; }
.section-title { font-size: clamp(1.5rem, 5vw, 2.25rem); font-weight: 800; color: var(--gray-900); margin-bottom: 0.75rem; }
.section-subtitle { color: var(--gray-400); max-width: 36rem; margin: 0 auto; line-height: 1.7; }
.section-header { text-align: center; margin-bottom: 2rem; }
@media (min-width: 640px) { .section-header { margin-bottom: 3rem; } }

/* Grid helpers */
.grid { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
@media (min-width: 640px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }
.grid-lg-2 { grid-template-columns: 1fr; gap: 4rem; }
@media (min-width: 1024px) { .grid-lg-2 { grid-template-columns: repeat(2, 1fr); align-items: center; } }

/* ── SERVICE CARD ── */
.service-card { display: flex; flex-direction: column; padding: 1.75rem; transition: transform 0.3s; }
.service-card:hover { transform: translateY(-4px); }
.service-card-icon { font-size: 2.5rem; margin-bottom: 1.25rem; line-height: 1; }
.service-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.5rem; transition: color 0.2s; }
.service-card:hover h3 { color: var(--primary-600); }
.service-card p { font-size: 0.875rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 1.25rem; }
.service-card-highlights { margin-bottom: 1.5rem; flex: 1; }
.service-card-highlights li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: var(--gray-600); margin-bottom: 0.375rem; }
.dot { width: 0.375rem; height: 0.375rem; border-radius: 50%; background: #93c5fd; flex-shrink: 0; }
.service-card-link { margin-top: auto; display: inline-flex; align-items: center; gap: 0.375rem; font-size: 0.875rem; font-weight: 600; color: var(--primary-600); transition: gap 0.2s; }
.service-card:hover .service-card-link { gap: 0.625rem; }
.service-card-link svg { width: 1rem; height: 1rem; }

/* ── DETAIL CARD ── */
.detail-card { display: flex; flex-direction: column; padding: 1.75rem; }
.detail-card-icon { font-size: 1.875rem; margin-bottom: 1rem; line-height: 1; }
.detail-card-icon svg { width: 2rem; height: 2rem; color: var(--accent-500); }
.detail-card h2 { font-size: 1.25rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.5rem; }
.detail-card-desc { font-size: 0.875rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 1.25rem; }
.detail-card-items { flex: 1; }
.detail-card-items li { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.875rem; color: var(--gray-700); margin-bottom: 0.625rem; }
.detail-card-items li svg { width: 1rem; height: 1rem; color: var(--accent-500); flex-shrink: 0; margin-top: 0.125rem; }
.detail-card-list li { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.875rem; color: var(--gray-700); margin-bottom: 0.625rem; }
.detail-card-list li svg { width: 1rem; height: 1rem; color: var(--accent-500); flex-shrink: 0; margin-top: 0.125rem; }
.detail-card-price { margin-top: 1.25rem; padding-top: 1rem; border-top: 1px solid var(--gray-100); }
.detail-card-price span { display: block; font-size: 0.75rem; color: var(--gray-400); margin-bottom: 0.125rem; }
.detail-card-price strong { font-size: 0.875rem; font-weight: 600; color: var(--primary-700); }

/* ── WHY US ── */
.why-list li { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; color: var(--gray-700); margin-bottom: 0.875rem; line-height: 1.6; }
.why-list li svg { width: 1.25rem; height: 1.25rem; color: var(--accent-500); flex-shrink: 0; margin-top: 0.125rem; }
.stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; margin-top: 0; }
@media (min-width: 640px) { .stats-grid { gap: 1rem; } }
.stat-card { background: #dde0e4; border-radius: 1rem; padding: 1.125rem 1rem; box-shadow: 0 1px 3px rgba(0,0,0,0.08); border: 1px solid var(--gray-200); text-align: center; }
@media (min-width: 640px) { .stat-card { padding: 1.5rem; } }
.stat-value { font-size: 1.5rem; font-weight: 900; color: var(--primary-700); margin-bottom: 0.25rem; }
@media (min-width: 640px) { .stat-value { font-size: 1.875rem; } }
.stat-label { font-size: 0.7rem; color: var(--gray-400); font-weight: 500; }
@media (min-width: 640px) { .stat-label { font-size: 0.75rem; } }

/* ── CTA BANNER ── */
.cta-banner { position: relative; overflow: hidden; background: linear-gradient(90deg, #1e40af 0%, #1d4ed8 100%); color: #fff; padding: 3rem 0; text-align: center; }
@media (min-width: 640px) { .cta-banner { padding: 4rem 0; } }
.cta-banner-blob { position: absolute; top: -5rem; right: 0; width: 320px; height: 320px; border-radius: 50%; background: rgba(255,255,255,0.05); filter: blur(60px); pointer-events: none; }
.cta-banner h2 { font-size: clamp(1.5rem, 5vw, 2.25rem); font-weight: 900; margin-bottom: 0.75rem; }
.cta-banner p { color: #bfdbfe; font-size: 1rem; margin-bottom: 1.75rem; max-width: 36rem; margin-left: auto; margin-right: auto; }
@media (min-width: 640px) { .cta-banner p { font-size: 1.125rem; margin-bottom: 2rem; } }
.cta-actions { display: flex; flex-direction: column; align-items: stretch; gap: 0.625rem; padding: 0 1rem; }
@media (min-width: 480px) { .cta-actions { flex-direction: row; flex-wrap: wrap; justify-content: center; align-items: center; padding: 0; gap: 0.75rem; } }
.cta-actions .btn-white, .cta-actions .btn-border-white, .cta-actions .btn-green { justify-content: center; }
.btn-green { display: inline-flex; align-items: center; gap: 0.5rem; background: #22c55e; color: #fff; font-weight: 600; padding: 0.625rem 1.25rem; border-radius: 0.75rem; font-size: 0.875rem; transition: background 0.2s; }
.btn-green:hover { background: #16a34a; }
.btn-border-white { display: inline-flex; align-items: center; gap: 0.5rem; border: 2px solid rgba(255,255,255,0.3); color: #fff; font-weight: 600; padding: 0.625rem 1.25rem; border-radius: 0.75rem; font-size: 0.875rem; transition: border-color 0.2s; background: transparent; }
.btn-border-white:hover { border-color: rgba(255,255,255,0.7); }

/* ── FOOTER ── */
footer { background: var(--gray-950); color: #9ca3af; }
.footer-inner { padding: 2.5rem 0 2rem; }
@media (min-width: 640px) { .footer-inner { padding: 3.5rem 0 2.5rem; } }
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2.5rem; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1fr 1fr 1fr 1fr; } }
.footer-brand p { font-size: 0.875rem; line-height: 1.7; color: var(--gray-500); max-width: 18rem; margin-top: 1rem; }
.footer-brand img { height: 2.5rem; }
.footer-col h3 { font-size: 0.875rem; font-weight: 600; color: #fff; margin-bottom: 1rem; letter-spacing: 0.05em; }
.footer-col ul li { margin-bottom: 0.625rem; }
.footer-col ul li a { font-size: 0.875rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: #fff; }
.footer-contact li { display: flex; align-items: flex-start; gap: 0.625rem; font-size: 0.875rem; margin-bottom: 0.75rem; }
.footer-contact li svg { width: 1rem; height: 1rem; color: var(--primary-400); flex-shrink: 0; margin-top: 0.125rem; }
.footer-contact li a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #1f2937; padding: 1.25rem 0; }
.footer-bottom-inner { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; font-size: 0.75rem; color: #4b5563; }
@media (min-width: 640px) { .footer-bottom-inner { flex-direction: row; justify-content: space-between; } }
.footer-bottom-links { display: flex; gap: 1.25rem; }
.footer-bottom-links a:hover { color: #d1d5db; }

/* ── GOOGLE REVIEW ── */
.review-section { padding: 4rem 0; background: #b0b7c0; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); text-align: center; }
.stars { display: flex; justify-content: center; gap: 0.25rem; margin-bottom: 1rem; }
.stars svg { width: 1.5rem; height: 1.5rem; color: #fbbf24; fill: #fbbf24; }
.review-section h2 { font-size: 1.5rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.75rem; }
.review-section p { font-size: 0.875rem; color: var(--gray-500); max-width: 24rem; margin: 0 auto 1.75rem; line-height: 1.7; }

/* ── PRICE TABLE ── */
.price-table { border-radius: 1rem; overflow: hidden; border: 1px solid var(--gray-100); box-shadow: 0 1px 3px rgba(0,0,0,0.06); margin-bottom: 2rem; }
.price-table-header { padding: 1rem 1.5rem; }
.price-table-header h2 { font-size: 1rem; font-weight: 700; color: #fff; letter-spacing: 0.05em; }
.price-table-row { display: flex; align-items: flex-start; justify-content: space-between; padding: 1rem 1.5rem; gap: 1.5rem; border-top: 1px solid var(--gray-50); transition: background 0.2s; }
.price-table-row:hover { background: rgba(249,250,251,0.6); }
.price-name { font-size: 0.875rem; font-weight: 500; color: var(--gray-800); }
.price-note { font-size: 0.75rem; color: var(--gray-400); margin-top: 0.125rem; }
.price-value { font-size: 0.875rem; font-weight: 700; color: var(--primary-700); white-space: nowrap; flex-shrink: 0; }

/* ── CONTACT ── */
.contact-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.contact-icon { width: 2.5rem; height: 2.5rem; background: var(--primary-50); border-radius: 0.75rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; border: 1px solid var(--primary-100); }
.contact-icon svg { width: 1rem; height: 1rem; color: var(--primary-600); }
.contact-label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gray-400); margin-bottom: 0.125rem; }
.contact-value { font-size: 0.875rem; color: var(--gray-700); }
.contact-value a:hover { color: var(--primary-600); }
.whatsapp-btn { display: flex; align-items: center; gap: 0.75rem; background: #22c55e; color: #fff; font-weight: 600; padding: 1rem 1.25rem; border-radius: 1rem; transition: background 0.2s; margin-top: 0.5rem; box-shadow: 0 2px 8px rgba(34,197,94,0.2); }
.whatsapp-btn:hover { background: #16a34a; }
.whatsapp-btn svg { width: 1.25rem; height: 1.25rem; }
.whatsapp-sub { font-size: 0.75rem; color: #bbf7d0; }

/* Contact form */
.contact-form-card { padding: 2rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--gray-700); margin-bottom: 0.375rem; }
.form-input { width: 100%; padding: 0.75rem 1rem; border-radius: 0.75rem; border: 1px solid var(--gray-200); font-size: 0.875rem; font-family: inherit; color: var(--gray-900); transition: all 0.2s; outline: none; margin-bottom: 1rem; }
.form-input:focus { border-color: var(--primary-400); box-shadow: 0 0 0 3px rgba(59,130,246,0.1); }
.form-input::placeholder { color: var(--gray-400); }
textarea.form-input { resize: none; }
.form-checkbox-row { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; }
.form-checkbox-row input { margin-top: 0.25rem; width: 1rem; height: 1rem; flex-shrink: 0; }
.form-checkbox-row label { font-size: 0.75rem; color: var(--gray-500); line-height: 1.6; }
.form-checkbox-row label a { color: var(--primary-600); }
.form-checkbox-row label a:hover { text-decoration: underline; }
.form-success { text-align: center; padding: 3rem 0; }
.form-success-icon { width: 4rem; height: 4rem; background: rgba(16,185,129,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.form-success-icon svg { width: 2rem; height: 2rem; color: var(--accent-500); }
.form-success h3 { font-size: 1.125rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.5rem; }
.form-success p { font-size: 0.875rem; color: var(--gray-500); }
.form-reset-btn { margin-top: 1.25rem; font-size: 0.875rem; color: var(--primary-600); background: none; border: none; cursor: pointer; }
.form-reset-btn:hover { text-decoration: underline; }

/* Map placeholder */
.map-placeholder { aspect-ratio: 16/9; background: var(--gray-100); border-radius: 0.75rem; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; }
.map-placeholder svg { width: 1.75rem; height: 1.75rem; color: var(--gray-300); }
.map-placeholder span { font-size: 0.875rem; color: var(--gray-500); }
.map-placeholder a { font-size: 0.75rem; color: var(--primary-600); font-weight: 500; }
.map-placeholder a:hover { text-decoration: underline; }

/* ── ÜBER UNS ── */
.value-card { background: var(--gray-50); border-radius: 0.75rem; padding: 1.5rem; border-left: 4px solid; margin-bottom: 1rem; }
.value-card h3 { font-weight: 700; color: var(--gray-900); margin-bottom: 0.25rem; }
.value-card p { font-size: 0.875rem; color: var(--gray-500); }
.value-primary { border-left-color: var(--primary-600); }
.value-accent { border-left-color: var(--accent-500); }
.value-amber { border-left-color: #f59e0b; }

/* ── MISC ── */
.bg-white { background: #b0b7c0; }
.bg-gray-50 { background: #c8cdd4; }
.border-gray-100 { border-top: 1px solid var(--gray-100); }
.text-center { text-align: center; }
.inline-cta { border-radius: 1rem; border: 1px solid var(--primary-100); background: rgba(239,246,255,0.5); padding: 2rem; text-align: center; margin-top: 2rem; }
.inline-cta h2 { font-size: 1.25rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.5rem; }
.inline-cta p { font-size: 0.875rem; color: var(--gray-500); margin-bottom: 1.5rem; max-width: 24rem; margin-left: auto; margin-right: auto; }
.kfz-highlight { border-radius: 1rem; background: rgba(239,246,255,0.6); border: 1px solid var(--primary-100); padding: 2rem; margin-top: 2rem; }
.kfz-highlight-icon { font-size: 1.875rem; margin-bottom: 1rem; }
.kfz-highlight h2 { font-size: 1.25rem; font-weight: 700; color: var(--gray-900); margin-bottom: 0.75rem; }
.kfz-highlight p { font-size: 0.875rem; color: var(--gray-600); line-height: 1.7; margin-bottom: 0.75rem; }
.kfz-highlight strong { font-size: 0.875rem; font-weight: 600; color: var(--primary-700); }

/* SVG icons inline size helpers */
svg.icon-sm { width: 1rem; height: 1rem; }
svg.icon-md { width: 1.25rem; height: 1.25rem; }
svg.icon-lg { width: 1.5rem; height: 1.5rem; }
