/* AustrCarPro.online – Corporate Amber/Gold Theme */
:root {
  --bg: #fafaf8;
  --bg-2: #f5f4ef;
  --bg-dark: #1c1400;
  --amber: #d97706;
  --amber-light: #f59e0b;
  --amber-pale: #fef3c7;
  --text: #1c1400;
  --text-muted: #6b5e3a;
  --border: #e8e0c8;
  --radius: 6px;
  --shadow: 0 2px 16px rgba(28,20,0,0.08);
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--text); font-family: Georgia, serif; line-height: 1.75; overflow-x: hidden; }

nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--bg-dark); border-bottom: 2px solid var(--amber);
  padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; height: 68px;
}
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo-emblem { width: 38px; height: 38px; border: 2px solid var(--amber); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.logo-name { font-size: 1.05rem; font-weight: 700; color: white; letter-spacing: 0.08em; font-family: 'Segoe UI', sans-serif; }
.logo-name span { color: var(--amber-light); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; font-family: 'Segoe UI', sans-serif; letter-spacing: 0.04em; }
.nav-links a:hover, .nav-links a.active { color: var(--amber-light); }
.nav-btn { background: var(--amber); color: var(--bg-dark); padding: 0.55rem 1.4rem; border-radius: var(--radius); font-weight: 700; font-size: 0.82rem; text-decoration: none; transition: background 0.2s; font-family: 'Segoe UI', sans-serif; }
.nav-btn:hover { background: var(--amber-light); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; }
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--amber); margin: 5px 0; }

.hero { background: var(--bg-dark); padding: 6rem 2rem 5rem; position: relative; overflow: hidden; }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--amber), var(--amber-light), var(--amber)); }
.hero-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-label { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber-light); margin-bottom: 1.5rem; font-family: 'Segoe UI', sans-serif; }
.hero h1 { font-size: clamp(2rem, 3.8vw, 3.2rem); font-weight: 700; color: white; line-height: 1.2; margin-bottom: 1.2rem; }
.hero h1 em { font-style: italic; color: var(--amber-light); }
.hero p { color: rgba(255,255,255,0.65); font-size: 1rem; margin-bottom: 2rem; max-width: 440px; font-family: 'Segoe UI', sans-serif; }
.btn-row { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-amber { background: var(--amber); color: var(--bg-dark); padding: 0.9rem 2.2rem; border-radius: var(--radius); font-weight: 700; text-decoration: none; font-size: 0.9rem; transition: background 0.2s; font-family: 'Segoe UI', sans-serif; }
.btn-amber:hover { background: var(--amber-light); }
.btn-ghost { border: 1px solid rgba(255,255,255,0.3); color: rgba(255,255,255,0.8); padding: 0.9rem 2.2rem; border-radius: var(--radius); font-weight: 600; text-decoration: none; font-size: 0.9rem; transition: all 0.2s; font-family: 'Segoe UI', sans-serif; }
.btn-ghost:hover { border-color: var(--amber); color: var(--amber-light); }
.hero-stats { display: flex; gap: 3rem; margin-top: 2.5rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); }
.stat-v { font-size: 1.8rem; font-weight: 700; color: var(--amber-light); font-family: 'Segoe UI', sans-serif; }
.stat-l { font-size: 0.72rem; color: rgba(255,255,255,0.45); text-transform: uppercase; letter-spacing: 0.08em; font-family: 'Segoe UI', sans-serif; }

section { padding: 5rem 2rem; }
.container { max-width: 1100px; margin: 0 auto; }
.eyebrow { font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.7rem; font-family: 'Segoe UI', sans-serif; font-weight: 600; }
.sh { font-size: clamp(1.6rem, 2.8vw, 2.2rem); font-weight: 700; color: var(--text); margin-bottom: 1rem; }
.sp { color: var(--text-muted); max-width: 540px; margin-bottom: 3rem; font-size: 0.95rem; font-family: 'Segoe UI', sans-serif; }

.pro-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 1.5rem; }
.pro-card { background: white; border: 1px solid var(--border); border-radius: var(--radius); padding: 2rem; box-shadow: var(--shadow); transition: all 0.3s; border-top: 3px solid transparent; }
.pro-card:hover { border-top-color: var(--amber); transform: translateY(-3px); }
.pro-card-tag { font-size: 0.7rem; font-weight: 700; color: var(--amber); letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.7rem; font-family: 'Segoe UI', sans-serif; }
.pro-card h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 0.5rem; font-family: 'Segoe UI', sans-serif; }
.pro-card p { font-size: 0.88rem; color: var(--text-muted); font-family: 'Segoe UI', sans-serif; }

.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; background: var(--bg-dark); }
.trust-item { padding: 2.5rem 2rem; border-right: 1px solid rgba(255,255,255,0.08); }
.trust-item:last-child { border-right: none; }
.trust-item h4 { font-size: 0.85rem; font-weight: 700; color: var(--amber-light); margin-bottom: 0.5rem; font-family: 'Segoe UI', sans-serif; }
.trust-item p { font-size: 0.83rem; color: rgba(255,255,255,0.55); font-family: 'Segoe UI', sans-serif; }

.faq-wrap { max-width: 800px; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q { width: 100%; background: none; border: none; color: var(--text); text-align: left; padding: 1.2rem 0; font-size: 0.95rem; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; transition: color 0.2s; font-family: 'Segoe UI', sans-serif; }
.faq-q:hover { color: var(--amber); }
.faq-ico { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.3s; color: var(--amber); }
.faq-item.open .faq-ico { transform: rotate(45deg); }
.faq-ans { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-ans p { padding: 0 0 1.2rem; color: var(--text-muted); font-size: 0.9rem; font-family: 'Segoe UI', sans-serif; }

.form-g { margin-bottom: 1.4rem; }
.form-g label { display: block; font-size: 0.78rem; font-weight: 600; color: var(--text-muted); margin-bottom: 0.4rem; font-family: 'Segoe UI', sans-serif; }
.form-g input, .form-g textarea, .form-g select { width: 100%; background: white; border: 1px solid var(--border); color: var(--text); padding: 0.8rem 1rem; border-radius: var(--radius); font-size: 0.92rem; font-family: 'Segoe UI', sans-serif; transition: border-color 0.2s; }
.form-g input:focus, .form-g textarea:focus { outline: none; border-color: var(--amber); }
.form-g textarea { min-height: 130px; resize: vertical; }
.btn-submit { background: var(--amber); color: var(--bg-dark); padding: 0.9rem 2.5rem; border: none; border-radius: var(--radius); font-weight: 700; font-size: 0.9rem; cursor: pointer; transition: background 0.2s; font-family: 'Segoe UI', sans-serif; }
.btn-submit:hover { background: var(--amber-light); }

.page-hero { background: var(--bg-dark); border-bottom: 2px solid var(--amber); padding: 5rem 2rem 4rem; }
.page-hero h1 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; color: white; margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.65); max-width: 580px; font-size: 0.95rem; font-family: 'Segoe UI', sans-serif; }

.diag-table { width: 100%; border-collapse: collapse; margin-bottom: 3rem; font-family: 'Segoe UI', sans-serif; }
.diag-table th { background: var(--bg-dark); color: var(--amber-light); padding: 0.9rem 1.2rem; text-align: left; font-size: 0.8rem; letter-spacing: 0.08em; }
.diag-table td { padding: 0.9rem 1.2rem; border-bottom: 1px solid var(--border); font-size: 0.88rem; color: var(--text-muted); }
.diag-table tr:hover td { background: var(--amber-pale); }
.badge-ok { background: #d1fae5; color: #065f46; padding: 2px 10px; border-radius: 10px; font-size: 0.75rem; font-weight: 600; }
.badge-req { background: var(--amber-pale); color: var(--amber); padding: 2px 10px; border-radius: 10px; font-size: 0.75rem; font-weight: 600; }

.priv h2 { font-size: 1.05rem; font-weight: 700; color: var(--amber); margin: 2rem 0 0.6rem; font-family: 'Segoe UI', sans-serif; }
.priv p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 1rem; font-family: 'Segoe UI', sans-serif; }

footer { background: var(--bg-dark); color: white; padding: 4rem 2rem 2rem; border-top: 2px solid var(--amber); }
.foot-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.foot-brand p { color: rgba(255,255,255,0.5); font-size: 0.85rem; margin-top: 1rem; max-width: 260px; font-family: 'Segoe UI', sans-serif; }
.foot-col h5 { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--amber-light); margin-bottom: 1rem; font-family: 'Segoe UI', sans-serif; }
.foot-col ul { list-style: none; }
.foot-col ul li { margin-bottom: 0.6rem; }
.foot-col ul li a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; font-family: 'Segoe UI', sans-serif; }
.foot-col ul li a:hover { color: white; }
.foot-base { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 1.5rem; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.foot-base p { font-size: 0.78rem; color: rgba(255,255,255,0.35); font-family: 'Segoe UI', sans-serif; }

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .trust-row { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  nav { padding: 0 1rem; }
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-links.open { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--bg-dark); padding: 1rem 2rem; border-bottom: 2px solid var(--amber); }
  section { padding: 3rem 1rem; }
  .foot-grid { grid-template-columns: 1fr; }
}
