/* ================================
   BASE (NO UNIVERSAL SELECTOR)
================================ */
html {
  box-sizing: border-box;
}

body {
  box-sizing: border-box;
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f8fafc;
  color: #1e293b;
}

div,
section,
header,
footer,
main,
article,
aside,
nav,
button,
input,
select,
textarea {
  box-sizing: border-box;
}

.hidden {
  display: none;
}

/* ================================
   HERO
================================ */
.ccf-hero {
  text-align: center;
  padding: 100px 20px 90px;
  background: linear-gradient(135deg, #0a2540, #00d4aa);
  color: #ffffff;
}

.ccf-hero h1 {
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
}

.ccf-hero span {
  color: #ffd700;
}

.ccf-hero p {
  max-width: 640px;
  margin: 18px auto 32px;
  font-size: 18px;
  opacity: 0.95;
}

.ccf-btn-primary {
  background: #ffd700;
  color: #0a2540;
  font-size: 18px;
  padding: 16px 32px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ccf-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}

.ccf-trust {
  margin-top: 16px;
  font-size: 14px;
  opacity: 0.9;
}

/* ================================
   QUIZ CARD
================================ */
.ccf-quiz {
  max-width: 760px;
  margin: -80px auto 80px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.12);
  padding: 36px;
}

.ccf-progress {
  height: 6px;
  background: #e5e7eb;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 28px;
}

#ccf-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #00d4aa, #ffd700);
  transition: width 0.3s ease;
}

/* ================================
   QUESTIONS & OPTIONS
================================ */
.ccf-question {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 24px;
}

.ccf-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.ccf-option {
  padding: 18px;
  border-radius: 16px;
  border: 2px solid #e5e7eb;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  background: #ffffff;
  transition: border-color 0.15s ease,
              background-color 0.15s ease,
              transform 0.15s ease;
}

.ccf-option:hover {
  border-color: #00d4aa;
  background: #f0fdfa;
  transform: translateY(-2px);
}

/* ================================
   RESULTS
================================ */
.ccf-results {
  max-width: 820px;
  margin: 80px auto;
  padding: 48px;
  border-radius: 28px;
  background: linear-gradient(135deg, #0a2540, #00d4aa);
  color: #ffffff;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

.ccf-results h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.ccf-results p {
  font-size: 18px;
  opacity: 0.95;
}


.ccf-container {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
}

.ccf-quiz,
.ccf-results {
  margin-left: auto;
  margin-right: auto;
}

