/* Incorcrink PDR - incorcrink.autos */
:root {
  --primary: #C0C0C0;
  --secondary: #2D2D2D;
  --accent: #DC2626;
  --light: #F5F5F5;
  --text: #111827;
  --radius: 8px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Roboto', 'Arial', sans-serif;
  line-height: 1.65;
  color: #333;
  background: #fff;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 1.25rem; }
.site-header {
  background: #fff;
  border-bottom: 2px solid var(--primary);
  position: sticky; top: 0; z-index: 100;
  box-shadow: var(--shadow);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 0; flex-wrap: wrap; gap: 1rem;
}
.logo {
  font-size: 1.35rem; font-weight: 700; color: #C0C0C0;
  text-decoration: none; letter-spacing: -0.02em;
}
.nav-list { display: flex; list-style: none; gap: 1.5rem; flex-wrap: wrap; }
.nav-list a { color: #2D2D2D; font-weight: 500; text-decoration: none; }
.nav-list a:hover, .nav-list a.active { color: var(--accent); text-decoration: none; }
.btn {
  display: inline-block; padding: 0.65rem 1.4rem; border-radius: var(--radius);
  font-weight: 600; cursor: pointer; border: 2px solid transparent;
  text-decoration: none; transition: all 0.2s;
}
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { opacity: 0.9; text-decoration: none; }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--light); }
.header-cta { font-size: 0.9rem; }
.hero {
  position: relative; min-height: 480px; display: flex; align-items: center;
  background: var(--secondary); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; opacity: 0.45;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 4rem 0; max-width: 680px; }
.hero h1 { font-size: clamp(2rem, 5vw, 3rem); color: #fff; margin-bottom: 1rem; line-height: 1.15; }
.hero p { font-size: 1.15rem; color: rgba(255,255,255,0.92); margin-bottom: 1.75rem; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.section { padding: 4.5rem 0; }
.section-alt { background: var(--light); }
.section-title { text-align: center; margin-bottom: 2.5rem; }
.section-title h2 { font-size: 2rem; color: var(--secondary); margin-bottom: 0.5rem; }
.section-title p { color: #666; max-width: 600px; margin: 0 auto; }
.grid { display: grid; gap: 2rem; }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.card {
  background: #fff;
  border-radius: var(--radius); padding: 2rem;
  box-shadow: var(--shadow); border: 1px solid #eee;
}
.card h3 { color: var(--accent); margin-bottom: 0.75rem; font-size: 1.2rem; }
.card p { color: #555; }
.card-icon { font-size: 2rem; margin-bottom: 1rem; }
.stats { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; padding: 3rem 0; }
.stat { text-align: center; }
.stat-num { font-size: 2.5rem; font-weight: 700; color: var(--primary); }
.stat-label { color: #666; font-size: 0.95rem; }
.process-steps { counter-reset: step; }
.process-step {
  display: flex; gap: 1.5rem; margin-bottom: 2rem; align-items: flex-start;
}
.step-num {
  flex-shrink: 0; width: 48px; height: 48px; background: var(--primary);
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.pricing-table { width: 100%; border-collapse: collapse; margin: 2rem 0; }
.pricing-table th, .pricing-table td {
  padding: 1rem; text-align: left; border-bottom: 1px solid #ddd;
}
.pricing-table th { background: var(--primary); color: #fff; }
.pricing-table tr:hover { background: var(--light); }
.feature-list { list-style: none; }
.feature-list li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; }
.feature-list li::before { content: "✓"; position: absolute; left: 0; color: var(--primary); font-weight: 700; }
.cta-band {
  background: var(--primary); color: #fff;
  padding: 3.5rem 0; text-align: center;
}
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { margin-bottom: 1.5rem; opacity: 0.9; }
.page-header {
  background: var(--secondary); color: #fff; padding: 3rem 0; text-align: center;
}
.page-header h1 { font-size: 2.25rem; margin-bottom: 0.5rem; }
.contact-form { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; margin-bottom: 0.4rem; font-weight: 600; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.75rem; border: 1px solid #ccc;
  border-radius: var(--radius); font-family: inherit; font-size: 1rem;
  background: #fff; color: #333;
}
.form-group textarea { min-height: 140px; resize: vertical; }
.site-footer {
  background: var(--secondary);
  color: #ccc; padding: 3rem 0 0;
}
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; }
.footer-col h3 { color: #fff; margin-bottom: 1rem; font-size: 1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { color: #ccc; }
.footer-contact .contact-email { font-size: 1.05rem; }
.footer-bottom { text-align: center; padding: 1.5rem; margin-top: 2rem; border-top: 1px solid #444; font-size: 0.875rem; }
.legal-section { max-width: 800px; margin: 0 auto; padding: 3rem 1.25rem; }
.legal-section h1 { margin-bottom: 0.5rem; }
.legal-updated { color: #888; margin-bottom: 2rem; }
.legal-section h2 { margin: 2rem 0 0.75rem; color: var(--accent); font-size: 1.25rem; }
.legal-section p, .legal-section li { margin-bottom: 1rem; color: #444; }
.legal-section ul { padding-left: 1.5rem; }
.testimonial { font-style: italic; border-left: 4px solid var(--primary); padding-left: 1.25rem; margin: 1.5rem 0; }
.testimonial cite { display: block; margin-top: 0.5rem; font-style: normal; font-weight: 600; }
.faq-item { margin-bottom: 1.5rem; }
.faq-item h3 { margin-bottom: 0.5rem; color: var(--accent); }
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
@media (max-width: 768px) {
  .split { grid-template-columns: 1fr; }
  .nav-list { gap: 0.75rem; }
  .hero { min-height: 380px; }
}
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; background: #1a1a1a; color: #fff;
  padding: 1.25rem; z-index: 9999; box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.cookie-banner--hidden { display: none; }
.cookie-banner__inner { max-width: 1140px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; }
.cookie-banner__inner p { flex: 1; min-width: 240px; font-size: 0.9rem; }
.cookie-banner__inner a { color: var(--accent); }
.cookie-banner__actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
