.home-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.home-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.home-header h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.1;
  margin-bottom: 1rem;
  letter-spacing: -0.03em;
}

.home-header p {
  font-size: clamp(1rem, 1.6vw, 1.1rem);
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted);
}

.home-img {
  width: clamp(160px, 22vw, 240px);
  border-radius: 50%;
  margin: 0 auto;
  border: 1px solid var(--border);
  background-color: var(--card-bg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.home-img:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 35px 70px rgba(0, 0, 0, 0.15);
}
.home-section {
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.75;
  font-size: clamp(1rem, 1.4vw, 1.05rem);
}

.home-section h2 {
  font-size: clamp(1.3rem, 2vw, 1.6rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.home-section h3 {
  font-size: 1.1rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
  color: var(--text-subtle);
}

.home-section ul {
  list-style: none;
  padding-left: 0;
  margin-top: 1rem;
}

.home-section li {
  position: relative;
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-subtle);
}

.home-section li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--accent);
  opacity: 0.85;
}
.home-quote {
  max-width: 720px;
  margin: 4rem auto 0;
  padding: 2.5rem 3rem;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-style: italic;
  text-align: center;
  color: var(--text-subtle);
  border-left: 4px solid var(--accent);
  background:
    linear-gradient(180deg, rgba(59, 130, 246, 0.05), transparent),
    var(--card-bg);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

@media (max-width: 640px) {
  .home-content {
    gap: 3rem;
  }

  .home-quote {
    padding: 2rem 1.75rem;
    margin-top: 3rem;
  }
}
