:root {
  color-scheme: light;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #f5f7fb;
  color: #111827;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
}

.page-container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.hero {
  background: linear-gradient(135deg, #2e4dff 0%, #4f73ff 100%);
  color: white;
  padding: 4rem 1.5rem;
  text-align: center;
}

.hero-content {
  max-width: 760px;
  margin: 0 auto;
}

.label {
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.85rem;
  opacity: 0.85;
}

h1 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.05;
}

h1 span {
  color: #ffe066;
}

.subtitle {
  margin: 1.5rem auto 2rem;
  max-width: 640px;
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.95;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 1.5rem;
  border-radius: 999px;
  background: #fff;
  color: #1f2937;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.12);
}

main {
  flex: 1;
  padding: 3rem 1.5rem;
}

.benefits,
.offer {
  max-width: 900px;
  margin: 0 auto 2rem;
  background: white;
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.benefits h2,
.offer h2 {
  margin-top: 0;
  font-size: 1.65rem;
}

.benefits ul {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.benefits li {
  margin-bottom: 1rem;
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.8;
}

.benefits li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #2e4dff;
  font-weight: 700;
}

.offer {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}

.contact-card {
  border-radius: 24px;
  padding: 1.8rem;
  background: linear-gradient(180deg, #eef4ff 0%, #ffffff 100%);
  border: 1px solid rgba(46, 77, 255, 0.15);
}

.contact-card h3 {
  margin-top: 0;
}

.contact-card p {
  margin: 0.5rem 0 1.25rem;
  color: #334155;
}

.contact-card a {
  display: inline-block;
  text-decoration: none;
  color: #2e4dff;
  font-weight: 700;
}

footer {
  padding: 1.5rem;
  text-align: center;
  font-size: 0.95rem;
  color: #475569;
}

@media (min-width: 720px) {
  .offer {
    grid-template-columns: 1.6fr 1fr;
    align-items: center;
  }
}

.hero-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}

.secondary-link {
  color: white;
  text-decoration: underline;
  font-weight: 600;
}

.seo-copy,
.blog-preview {
  max-width: 900px;
  margin: 0 auto 2rem;
  background: white;
  border-radius: 28px;
  padding: 2rem;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
}

.seo-copy h2,
.blog-preview .section-heading h2 {
  margin-top: 0;
  font-size: 1.65rem;
}

.seo-copy p,
.seo-copy ul,
.blog-preview p {
  line-height: 1.75;
  color: #334155;
}

.seo-copy ul {
  padding-left: 1.2rem;
  margin: 1rem 0 0;
}

.seo-copy li {
  margin-bottom: 0.8rem;
}

.blog-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  margin-top: 1.5rem;
}

.blog-card {
  padding: 1.6rem;
  border-radius: 24px;
  background: linear-gradient(180deg, #eef4ff 0%, #ffffff 100%);
  border: 1px solid rgba(46, 77, 255, 0.15);
}

.blog-card h3 {
  margin-top: 1rem;
}

.blog-card p {
  margin: 0.8rem 0 1rem;
  color: #475569;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  background: #e0e7ff;
  color: #1d4ed8;
  font-size: 0.8rem;
  font-weight: 700;
}

.blog-card a {
  display: inline-block;
  text-decoration: none;
  color: #2e4dff;
  font-weight: 700;
}

@media (min-width: 820px) {
  .hero-links {
    flex-direction: row;
  }

  .blog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
