:root {
  --poke-yellow: #ffcb05;
  --poke-yellow-hover: #e6b604;
  --poke-blue: #3b4cca;
  --poke-blue-hover: #2f3d9f;
  --poke-dark: #1d255f;
  --bg-color: #f6f8fa;
  --text-dark: #333333;
  --text-light: #ffffff;
  --gray: #64748b;
  --gray-light: #e2e8f0;
  --radius: 12px;
  --font-main: 'Inter', sans-serif;
  --font-head: 'Montserrat', sans-serif;
  --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-color);
  color: var(--text-dark);
  line-height: 1.6;
}

/* Typography */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--poke-dark);
  margin-bottom: 0.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 2.2rem;
  line-height: 1.1;
  margin-bottom: 1rem;
}

@media(min-width: 768px) {
  h1 { font-size: 3rem; }
}

p {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

a {
  text-decoration: none;
}

/* Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

section {
  padding: 4rem 0;
}

/* Header */
.header {
  background-color: var(--text-light);
  padding: 1rem 0;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  position: relative;
  z-index: 10;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.brand-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--poke-blue);
  line-height: 1.1;
  text-transform: uppercase;
}

/* Hero Section (Above Fold) */
.hero {
  background-color: var(--poke-blue);
  background-image: linear-gradient(135deg, var(--poke-blue) 0%, var(--poke-dark) 100%);
  position: relative;
  padding: 3rem 0;
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
}

.hero-bg-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
  mix-blend-mode: overlay;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media(min-width: 992px) {
  .hero .container {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.hero-text {
  color: var(--text-light);
}

.hero-text h1 {
  color: var(--poke-yellow);
  text-shadow: 2px 2px 0px rgba(0,0,0,0.2);
}

.hero-text p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  max-width: 500px;
}

.hero-bullets {
  list-style: none;
  margin: 2rem 0;
}

.hero-bullets li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.hero-bullets li svg {
  color: var(--poke-yellow);
  flex-shrink: 0;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  border-radius: 50px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border: none;
  font-size: 1.1rem;
  transition: all 0.2s;
  font-family: var(--font-head);
  text-transform: uppercase;
}

.btn-primary {
  background-color: var(--poke-yellow);
  color: var(--poke-dark);
  box-shadow: 0 4px 0px #d6a900;
}

.btn-primary:hover {
  background-color: var(--poke-yellow-hover);
  transform: translateY(2px);
  box-shadow: 0 2px 0px #d6a900;
}

.btn-primary:active {
  transform: translateY(4px);
  box-shadow: none;
}

.btn-outline {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.btn-outline:hover {
  background-color: rgba(255,255,255,0.1);
}

.btn-outline-dark {
  background-color: transparent;
  color: var(--poke-dark);
  border: 2px solid var(--gray-light);
}

.btn-outline-dark:hover {
  background-color: var(--gray-light);
}

/* Form Card */
.form-card {
  background-color: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow-lg);
  position: relative;
  border: 4px solid var(--poke-yellow);
}

.form-header {
  text-align: center;
  margin-bottom: 1.5rem;
}

.form-header h2 {
  font-size: 1.8rem;
  margin-bottom: 0.25rem;
  color: var(--poke-blue);
}

/* Progress Bar */
.progress-container {
  width: 100%;
  height: 8px;
  background-color: var(--gray-light);
  border-radius: 4px;
  margin-bottom: 2rem;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background-color: var(--poke-yellow);
  width: 16%; /* initial 1/6 */
  transition: width 0.3s ease;
}

.step-indicator-text {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gray);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

/* Form Controls */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.75rem;
  font-weight: 700;
  color: var(--poke-dark);
  font-size: 1.1rem;
}

.form-control {
  width: 100%;
  padding: 1rem;
  border: 2px solid var(--gray-light);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1.05rem;
  background-color: #fafafa;
  transition: all 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--poke-blue);
  background-color: #fff;
  box-shadow: 0 0 0 4px rgba(59, 76, 202, 0.1);
}

select.form-control {
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1em;
}

/* Multi-step Logic */
.form-step {
  display: none;
  animation: slideIn 0.3s ease-out;
}

.form-step.active {
  display: block;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.form-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  gap: 1rem;
}

.form-actions .btn {
  flex: 1;
}

/* Custom Radio/Select Cards */
.radio-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.radio-card {
  position: relative;
  display: flex;
  align-items: center;
  padding: 1rem;
  border: 2px solid var(--gray-light);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  font-weight: 600;
  background: #fff;
}

.radio-card:hover {
  border-color: var(--poke-blue);
  background-color: #f4f6fc;
}

.radio-card input[type="radio"],
.radio-card input[type="checkbox"] {
  position: absolute;
  opacity: 0;
}

.radio-card input[type="radio"]:checked + .radio-label,
.radio-card input[type="checkbox"]:checked + .radio-label {
  color: var(--poke-blue);
}

.radio-card:has(input[type="radio"]:checked),
.radio-card:has(input[type="checkbox"]:checked) {
  border-color: var(--poke-blue);
  background-color: #eef2ff;
  box-shadow: 0 0 0 1px var(--poke-blue);
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}

.radio-label::before {
  content: '';
  width: 20px;
  height: 20px;
  border: 2px solid var(--gray-light);
  border-radius: 50%;
  display: inline-block;
  transition: all 0.2s;
}

input[type="checkbox"] + .radio-label::before {
  border-radius: 4px;
}

input[type="radio"]:checked + .radio-label::before,
input[type="checkbox"]:checked + .radio-label::before {
  border-color: var(--poke-blue);
  border-width: 6px;
}

.form-checkbox {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: #f8fafc;
  padding: 1rem;
  border-radius: 8px;
  border: 1px solid var(--gray-light);
}

.form-checkbox input {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  accent-color: var(--poke-blue);
}

.form-checkbox label {
  font-weight: 500;
  font-size: 0.95rem;
  margin-bottom: 0;
  color: var(--text-dark);
}

.error-text {
  color: #e11d48;
  font-size: 0.9rem;
  margin-top: 0.5rem;
  font-weight: 500;
  display: none;
}

.has-error .form-control,
.has-error .radio-card {
  border-color: #e11d48;
}

.has-error .error-text {
  display: block;
}

.loading {
  display: none;
  text-align: center;
  padding: 3rem 0;
}

/* Sections */
.info-section {
  background-color: #fff;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media(min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card {
  background: var(--bg-color);
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-md);
  border-bottom: 4px solid var(--poke-blue);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--poke-yellow);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--poke-dark);
}

/* FAQ */
.faq-item {
  border: 2px solid var(--gray-light);
  border-radius: 8px;
  margin-bottom: 1rem;
  background: #fff;
  overflow: hidden;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 700;
  cursor: pointer;
  color: var(--poke-dark);
  padding: 1.25rem;
  user-select: none;
}

.faq-a {
  display: none;
  padding: 0 1.25rem 1.25rem;
  color: var(--gray);
  font-size: 1.05rem;
}

.faq-item.active {
  border-color: var(--poke-blue);
}

.faq-item.active .faq-a {
  display: block;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  color: var(--poke-blue);
}

.footer {
  text-align: center;
  padding: 3rem;
  background-color: var(--poke-dark);
  color: var(--gray-light);
  font-size: 0.95rem;
}

/* Mobile adjustments */
@media(max-width: 767px) {
  section { padding: 3rem 0; }
  .hero { padding: 2rem 0; }
  .form-card { padding: 1.5rem; }
}
