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

body {
  font-family: 'Palatino Linotype', 'Book Antiqua', Palatino, serif;
  background: #f9f9fb;
  color: #1e1e2f;
  line-height: 1.6;
}

/* === NAVIGATION === */
nav, footer {
  background: #1e1e2f;
  color: white;
  text-align: center;
  padding: 1.5rem;
}

nav a {
  color: white;
  text-decoration: none;
  margin: 0 1rem;
  font-weight: 600;
}

nav a:hover {
  text-decoration: underline;
}

/* === HEADERS === */
h1, h2, h3 {
  font-weight: 700;
  margin-bottom: 1rem;
  color: #1e1e2f;
}

section {
  padding: 3rem 1.5rem;
  max-width: 1100px;
  margin: auto;
}

/* === BUTTONS === */
.cta-button,
button {
  background: #1e1e2f;
  color: white;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s ease-in-out;
  text-decoration: none;
  font-weight: 600;
}

.cta-button:hover,
button:hover {
  background: #373751;
}

/* === HERO SECTION === */
.hero {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
  padding: 4rem 1rem 2rem;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #555;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero a.cta-button {
  margin: 0.5rem;
}

/* === FORM === */
.contact-form,
form.form-grid {
  background: white;
  padding: 2.5rem;
  border-radius: 12px;
  max-width: 700px;
  margin: 4rem auto;
  box-shadow: 0 8px 16px rgba(0,0,0,0.06);
}

.form-grid {
  display: grid;
  gap: 1rem;
}

.form-grid label {
  font-weight: 600;
  margin-bottom: 0.25rem;
  display: block;
}

.form-grid input,
.form-grid textarea,
.form-grid select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
}

.form-grid textarea {
  resize: vertical;
}

/* === PAGE CONTENT === */
.main-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.main-content h1,
.main-content h2,
.main-content h3 {
  color: #111827;
  font-weight: 700;
  text-align: center;
}

.main-content p {
  max-width: 700px;
  margin: 0 auto 1.25rem;
  text-align: center;
  color: #4b5563;
}

.main-content h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  text-align: center;
  margin-bottom: 0.75rem;
}

.main-content p:first-of-type {
  margin-bottom: 2rem;
}

/* === STEPS === */
.steps {
  background: #f1f3f7;
  padding: 2rem 1rem;
  border-radius: 12px;
  margin: 2rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.step {
  background: white;
  padding: 1.25rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
  text-align: center;
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

/* === DUAL CTA === */
.dual-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  margin: 2.5rem auto;
  max-width: 600px;
  padding: 0 1rem;
}

.dual-cta .cta-button {
  width: 100%;
  max-width: 280px;
  text-align: center;
  margin: 0;
}

@media (min-width: 640px) {
  .dual-cta {
    flex-direction: row;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .cta-button {
    font-size: 0.95rem;
    padding: 0.75rem 1.25rem;
  }
}

/* === PRICING MODELS === */
.main-content ul {
  list-style-type: none;
  padding-left: 0;
  margin: 2rem auto;
  max-width: 700px;
}

.main-content ul li {
  background: white;
  border-left: 4px solid #0054a6;
  padding: 1rem;
  margin-bottom: 1rem;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  font-size: 1rem;
  line-height: 1.6;
}

.main-content ul li strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.05rem;
}
