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

:root {
  --red:     #C8102E;
  --red-dk:  #a50d25;
  --dark:    #1a1a1a;
  --mid:     #444;
  --muted:   #777;
  --light:   #f5f5f5;
  --border:  #e0e0e0;
  --white:   #ffffff;
  --nav-h:   80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Open Sans', sans-serif; color: var(--dark); background: var(--white); overflow-x: hidden; }

/* ── TOPBAR ── */
.topbar {
  background: var(--dark); color: rgba(255,255,255,0.85);
  font-size: 0.75rem; font-family: 'Montserrat', sans-serif;
  font-weight: 500; letter-spacing: 0.06em;
  padding: 0.45rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.topbar a { color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.2s; }
.topbar a:hover { color: var(--red); }
.topbar-left { display: flex; gap: 2rem; align-items: center; }
.topbar-right { display: flex; gap: 1.5rem; align-items: center; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 500;
  background: var(--white);
  border-bottom: 3px solid var(--red);
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 3rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.nav-logo {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.45rem; font-weight: 900; letter-spacing: 0.02em;
  color: var(--dark); text-decoration: none; line-height: 1.1;
}
.nav-logo span { color: var(--red); }
.nav-logo small { display: block; font-size: 0.55rem; font-weight: 600; letter-spacing: 0.18em; color: var(--muted); text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 0.2rem; list-style: none; }
.nav-links a {
  text-decoration: none; color: var(--dark); font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 0.5rem 0.85rem; border-radius: 3px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--red); }
.nav-cta-btn {
  background: var(--red) !important; color: #fff !important;
  padding: 0.55rem 1.2rem !important; border-radius: 3px !important;
  transition: background 0.2s !important;
}
.nav-cta-btn:hover { background: var(--red-dk) !important; color: #fff !important; }

/* ── CONTAINER ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 1.5rem; }

/* ── SECTION HEADINGS ── */
.section-label {
  font-family: 'Montserrat', sans-serif; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--red);
  margin-bottom: 0.5rem; display: block;
}
.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 800;
  color: var(--dark); line-height: 1.2; margin-bottom: 1rem;
}
.section-desc { color: var(--muted); line-height: 1.75; font-size: 0.97rem; max-width: 680px; }
.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }

/* ── DIVIDER ── */
.red-bar { width: 50px; height: 4px; background: var(--red); display: block; margin: 0.8rem 0 1.2rem; border-radius: 2px; }
.red-bar.center { margin: 0.8rem auto 1.2rem; }

/* ── BUTTONS ── */
.btn {
  display: inline-block; font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; text-decoration: none; cursor: pointer; border: none;
  padding: 0.85rem 2rem; border-radius: 3px; transition: all 0.25s;
}
.btn-red { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-dk); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: #333; }
.btn-outline { background: transparent; color: var(--red); border: 2px solid var(--red); }
.btn-outline:hover { background: var(--red); color: #fff; }
.btn-white { background: #fff; color: var(--red); }
.btn-white:hover { background: var(--light); }

/* ── STARS ── */
.stars { color: #f5a623; font-size: 1rem; letter-spacing: 0.1em; }

/* ── CARDS ── */
.card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 6px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s, transform 0.3s;
}
.card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.12); transform: translateY(-4px); }

/* ── FORM ELEMENTS ── */
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-family: 'Montserrat', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--mid); }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border); border-radius: 4px;
  padding: 0.75rem 1rem; font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem; color: var(--dark); background: var(--white);
  transition: border-color 0.25s; outline: none; appearance: none; width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── BADGE ── */
.badge {
  display: inline-block; font-family: 'Montserrat', sans-serif;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.25rem 0.7rem; border-radius: 2px;
}
.badge-red { background: var(--red); color: #fff; }
.badge-dark { background: var(--dark); color: #fff; }

/* ── FAQ ── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 0; font-family: 'Montserrat', sans-serif;
  font-size: 0.88rem; font-weight: 700; color: var(--dark);
  text-align: left; gap: 1rem; transition: color 0.2s;
}
.faq-q:hover { color: var(--red); }
.faq-icon { flex-shrink: 0; font-size: 1.2rem; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.3s; }
.faq-a-inner { padding: 0 0 1.2rem; color: var(--muted); font-size: 0.88rem; line-height: 1.75; }
.faq-item.open .faq-a { max-height: 400px; }

/* ── FOOTER ── */
footer { background: var(--dark); color: rgba(255,255,255,0.75); padding: 4rem 2rem 2rem; }
.footer-grid { max-width: 1160px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo { font-family: 'Montserrat', sans-serif; font-size: 1.3rem; font-weight: 900; color: #fff; text-decoration: none; }
.footer-logo span { color: var(--red); }
.footer-tagline { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-top: 0.4rem; line-height: 1.6; }
.footer-col h4 { font-family: 'Montserrat', sans-serif; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #fff; margin-bottom: 1rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--red); }
.footer-col p { font-size: 0.84rem; line-height: 1.7; }
.footer-col a { color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-col a:hover { color: var(--red); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; max-width: 1160px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: rgba(255,255,255,0.35); flex-wrap: wrap; gap: 1rem; }
.footer-socials { display: flex; gap: 0.6rem; }
.footer-socials a { width: 34px; height: 34px; border: 1px solid rgba(255,255,255,0.15); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 0.75rem; text-decoration: none; transition: all 0.2s; }
.footer-socials a:hover { border-color: var(--red); color: var(--red); }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  nav { padding: 0 1.5rem; }
  .nav-links { gap: 0; }
  .nav-links a { padding: 0.4rem 0.5rem; font-size: 0.72rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .topbar { display: none; }
  .nav-links li:not(:last-child) { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
