html {
  text-rendering: optimizeLegibility;
}

body {
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.phone-shot {
  width: min(100%, 320px);
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(15, 22, 35, 0.16));
}

.phone-shot.small {
  width: min(100%, 280px);
}

.store-button {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  min-width: 178px;
  min-height: 58px;
  padding: 0.75rem 1.15rem;
  border-radius: 0.75rem;
  background: #0F1623;
  color: white;
  border: 1px solid #0F1623;
  transition: transform 160ms ease, background 160ms ease;
}

.store-button:hover {
  background: #162238;
  transform: translateY(-1px);
}

.store-small {
  font-size: 0.75rem;
  line-height: 1;
  opacity: 0.82;
}

.store-large {
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.15;
}

.state-card,
.pro-card {
  border: 1px solid #E5E7EB;
  background: #FFFFFF;
  border-radius: 1rem;
  padding: 1.25rem;
}

.state-card strong,
.pro-card strong {
  display: block;
  color: #0F1623;
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.state-card span,
.pro-card span {
  color: #4B5563;
  font-size: 0.95rem;
  line-height: 1.5;
}

.step {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1rem;
  align-items: start;
}

.step span {
  color: #7A63E8;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.step h3 {
  color: #0F1623;
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 0.35rem;
}

.step p {
  color: #4B5563;
  line-height: 1.7;
}

.program-card {
  border: 1px solid #E5E7EB;
  background: #FFFFFF;
  border-radius: 1rem;
  padding: 1.25rem;
  min-height: 220px;
}

.program-card img {
  width: 4rem;
  height: 4rem;
  border-radius: 0.85rem;
  margin-bottom: 1.25rem;
  object-fit: cover;
  background: #0F1623;
}

.program-card h3 {
  color: #0F1623;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.program-card p {
  color: #4B5563;
  line-height: 1.65;
}

.preview-card {
  display: flex;
  justify-content: center;
  padding: 1.25rem;
  border: 1px solid #E5E7EB;
  border-radius: 1.5rem;
  background: #FFFFFF;
}

.preview-card img {
  max-height: 560px;
  width: auto;
  filter: drop-shadow(0 18px 28px rgba(15, 22, 35, 0.14));
}

.contact-form {
  border: 1px solid #E5E7EB;
  background: #FFFFFF;
  border-radius: 1rem;
  padding: 1.25rem;
  display: grid;
  gap: 1rem;
}

.contact-form label {
  display: grid;
  gap: 0.45rem;
  color: #0F1623;
  font-weight: 700;
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid #D1D5DB;
  border-radius: 0.75rem;
  padding: 0.85rem 1rem;
  color: #0B0B0C;
  background: #FFFFFF;
  font-weight: 400;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(122, 99, 232, 0.25);
  border-color: #7A63E8;
}

.contact-form button {
  border: 0;
  border-radius: 0.75rem;
  background: #0F1623;
  color: #FFFFFF;
  padding: 0.95rem 1rem;
  font-weight: 800;
  cursor: pointer;
}

.contact-form button:hover {
  background: #162238;
}

@media (max-width: 768px) {
  .preview-card img {
    max-height: 520px;
  }
}
