/* ============================================
   STEFANI KAROSSERIE + LACK – Shared Styles
   ============================================ */

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

:root {
  --blue:        #1e3a5f;
  --blue-mid:    #2a5080;
  --blue-light:  #e8f0fa;
  --green:       #4caf6e;
  --green-dark:  #357a4f;
  --green-light: #e8f5ed;
  --gray-bg:     #f6f7f9;
  --gray-border: #dde3ec;
  --text-muted:  #5a6a7e;
  --white:       #ffffff;
  --radius:      10px;
  --radius-lg:   16px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', Arial, sans-serif;
  background: var(--white);
  color: var(--blue);
  font-size: 16px;
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── NAVIGATION ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--gray-border);
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { text-decoration: none; display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-top    { font-size: 20px; font-weight: 900; letter-spacing: 2px; color: var(--blue); }
.nav-logo-bottom { font-size: 9px; font-weight: 700; letter-spacing: 4px; color: var(--blue-mid); opacity: .7; }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { text-decoration: none; font-size: 14px; font-weight: 500; color: var(--text-muted); transition: color .2s; }
.nav-links a:hover, .nav-links a.active { color: var(--blue); }
.nav-cta {
  background: var(--green);
  color: #fff;
  padding: 9px 20px;
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background .2s;
}
.nav-cta:hover { background: var(--green-dark); }

/* ── SECTION BASE ── */
.section { padding: 5rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-gray  { background: var(--gray-bg); }
.section-blue  { background: var(--blue); }
.section-green { background: var(--green); }

.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--green-dark); margin-bottom: .5rem;
}
.section-title {
  font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 800;
  color: var(--blue); letter-spacing: -.5px; line-height: 1.1; margin-bottom: 1rem;
}
.section-sub { font-size: 16px; color: var(--text-muted); line-height: 1.75; max-width: 580px; }

.section-blue .section-label { color: var(--green); }
.section-blue .section-title { color: #fff; }
.section-blue .section-sub   { color: rgba(255,255,255,.55); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 26px; border-radius: var(--radius);
  font-size: 15px; font-weight: 700; text-decoration: none;
  border: none; cursor: pointer; transition: background .2s, transform .1s;
  font-family: inherit;
}
.btn:hover { transform: translateY(-1px); }
.btn-green  { background: var(--green); color: #fff; }
.btn-green:hover { background: var(--green-dark); }
.btn-outline { background: transparent; color: var(--blue); border: 2px solid var(--blue); }
.btn-outline:hover { background: var(--blue); color: #fff; }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.1); }

/* ── BADGES STRIP ── */
.badges-strip { background: var(--blue); padding: 1.25rem 2rem; }
.badges-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; gap: .75rem; flex-wrap: wrap; align-items: center; justify-content: center;
}
.badge {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600; color: rgba(255,255,255,.75);
  padding: 7px 14px; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12); border-radius: 100px;
}
.badge-dot { width: 7px; height: 7px; background: var(--green); border-radius: 50%; flex-shrink: 0; }

/* ── CARDS ── */
.card {
  background: var(--white); border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-lg); padding: 1.75rem 1.5rem;
  transition: border-color .2s, box-shadow .2s;
}
.card:hover { border-color: var(--blue-mid); box-shadow: 0 4px 20px rgba(30,58,95,.1); }
.card-icon {
  width: 48px; height: 48px; background: var(--blue-light);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 22px; margin-bottom: 1.25rem;
}
.card-title { font-size: 17px; font-weight: 700; color: var(--blue); margin-bottom: .5rem; }
.card-text  { font-size: 14px; color: var(--text-muted); line-height: 1.65; margin-bottom: 1rem; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { font-size: 11px; font-weight: 600; color: var(--blue-mid); background: var(--blue-light); padding: 3px 10px; border-radius: 100px; }

/* ── CONTACT FORM ── */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1 / -1; }
.form-label { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.55); }
.form-input {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius); padding: 11px 14px; color: #fff;
  font-size: 14px; font-family: inherit; outline: none; transition: border-color .2s;
}
.form-input:focus { border-color: var(--green); }
.form-input::placeholder { color: rgba(255,255,255,.3); }
textarea.form-input { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; background: var(--green); color: #fff; border: none;
  padding: 14px; border-radius: var(--radius); font-size: 15px; font-weight: 700;
  cursor: pointer; font-family: inherit; transition: background .2s; margin-top: .25rem;
}
.form-submit:hover { background: var(--green-dark); }

/* ── CERT ROWS ── */
.cert-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; background: var(--white);
  border-radius: var(--radius); border: 1px solid var(--gray-border);
}
.cert-check {
  width: 30px; height: 30px; background: var(--green-light);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: var(--green-dark); flex-shrink: 0;
}
.cert-icon {
  width: 30px; height: 30px; background: var(--blue-light);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 15px; flex-shrink: 0;
}
.cert-text { font-size: 14px; font-weight: 600; color: var(--blue); }

/* ── GREEN ACCENT LINE ── */
.green-line { width: 36px; height: 3px; background: var(--green); border-radius: 2px; margin: 8px 0 14px; }

/* ── FOOTER ── */
.footer { background: var(--blue); padding: 3rem 2rem 2rem; color: rgba(255,255,255,.5); font-size: 13px; }
.footer-inner { max-width: 1100px; margin: 0 auto; }
.footer-top {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 3rem;
  padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,.1); margin-bottom: 1.5rem;
}
.footer-logo-top    { font-size: 18px; font-weight: 900; letter-spacing: 2px; color: #fff; }
.footer-logo-bottom { font-size: 9px; font-weight: 700; letter-spacing: 4px; color: var(--green); margin-bottom: 1rem; }
.footer-desc { font-size: 13px; color: rgba(255,255,255,.4); line-height: 1.7; }
.footer-col-title { font-size: 12px; font-weight: 700; color: rgba(255,255,255,.6); letter-spacing: 1px; text-transform: uppercase; margin-bottom: .75rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.footer-col a { text-decoration: none; color: rgba(255,255,255,.4); transition: color .2s; }
.footer-col a:hover { color: var(--green); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom a { color: rgba(255,255,255,.35); text-decoration: none; }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* ── PAGE HERO (inner pages) ── */
.page-hero { background: var(--blue); padding: 4rem 2rem; position: relative; overflow: hidden; }
.page-hero-swoosh { position: absolute; top: 0; right: 0; width: 400px; height: 200px; pointer-events: none; opacity: .12; }
.page-hero-inner { max-width: 1100px; margin: 0 auto; position: relative; }
.page-hero-label { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--green); margin-bottom: .5rem; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: #fff; letter-spacing: -1px; line-height: 1.05; margin-bottom: 1rem; }
.page-hero-sub { font-size: 17px; color: rgba(255,255,255,.55); max-width: 560px; line-height: 1.7; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 680px) {
  .nav-links { display: none; }
  .footer-top { grid-template-columns: 1fr; gap: 2rem; }
  .form-grid  { grid-template-columns: 1fr; }
}
