:root {
  --home-max: 1120px;
  --home-pad: 1.25rem;
  --home-red: #e33239;
  --home-blue: #2563eb;
  --home-muted: #64748b;
  --home-text: #0f172a;
  --home-border: rgba(15, 23, 42, 0.08);
}

.home-shell {
  width: 100%;
  max-width: var(--home-max);
  margin: 0 auto;
  padding: 0 var(--home-pad);
}

.home-hero {
  padding: clamp(2.25rem, 5vw, 3.75rem) 0 clamp(2rem, 4vw, 2.5rem);
  background:
    linear-gradient(180deg, rgba(37, 99, 235, 0.07) 0%, transparent 60%),
    #f8fafc;
  border-bottom: 1px solid var(--home-border);
}

.home-kicker {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--home-blue);
}

.home-hero h1 {
  margin: 0 0 1rem;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.75rem, 4.2vw, 2.65rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 22ch;
  color: var(--home-text);
}

.home-hero-lead {
  margin: 0;
  max-width: 42rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: #334155;
}

.home-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.home-story-link {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--home-blue);
  text-decoration: none;
  font-weight: 600;
}

.home-story-link:hover {
  text-decoration: underline;
}

.home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.72rem 1.15rem;
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: box-shadow 0.15s ease, transform 0.15s ease;
}

.home-btn:active {
  transform: scale(0.98);
}

.home-btn--primary {
  background: linear-gradient(90deg, #2563eb, #1d4ed8);
  color: #fff;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.22);
}

.home-btn--ghost {
  background: #fff;
  color: var(--home-text);
  border-color: rgba(15, 23, 42, 0.12);
}

.home-section {
  padding: clamp(2rem, 4.5vw, 2.75rem) 0;
  border-bottom: 1px solid var(--home-border);
}

.home-section:last-of-type {
  border-bottom: none;
}

.home-section-head {
  margin-bottom: 1.35rem;
}

.home-section-head h2 {
  margin: 0 0 0.45rem;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.6rem);
  font-weight: 700;
  color: var(--home-text);
}

.home-section-head p {
  margin: 0;
  max-width: 40rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--home-muted);
}

.home-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .home-grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .home-grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .home-grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.home-card {
  display: flex;
  flex-direction: column;
  padding: 1.2rem 1.25rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--home-border);
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.04);
  text-decoration: none;
  color: inherit;
  transition: box-shadow 0.15s ease, border-color 0.15s ease;
}

a.home-card:hover {
  border-color: rgba(37, 99, 235, 0.25);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.08);
}

.home-card__tag {
  margin: 0 0 0.5rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--home-blue);
}

.home-card h3 {
  margin: 0 0 0.5rem;
  font-family: "Outfit", sans-serif;
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--home-text);
}

.home-card p {
  margin: 0 0 1rem;
  flex: 1;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #475569;
}

.home-card__action {
  margin-top: auto;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--home-blue);
}

.home-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .home-stat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.home-stat {
  padding: 1rem;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--home-border);
  text-align: center;
}

.home-stat strong {
  display: block;
  font-family: "Outfit", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--home-text);
}

.home-stat span {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  color: var(--home-muted);
  line-height: 1.35;
}

.home-why {
  padding: 1.35rem 1.25rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(59, 130, 246, 0.03));
  border: 1px solid rgba(37, 99, 235, 0.12);
}

.home-why p {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  line-height: 1.7;
  color: #334155;
}

.home-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.home-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 0.45rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: #334155;
}

.home-list li::before {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 0.2em;
  background-color: var(--home-red);
}

.home-cta-band {
  padding: clamp(2rem, 5vw, 2.75rem) 0 clamp(2.5rem, 6vw, 3.25rem);
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  color: #f1f5f9;
}

.home-cta-band h2 {
  margin: 0 0 1.25rem;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  max-width: 28ch;
}

.home-foot {
  padding: 1.5rem var(--home-pad) 2rem;
  border-top: 1px solid var(--home-border);
  font-size: 0.82rem;
  color: var(--home-muted);
  text-align: center;
}

.home-foot a {
  color: var(--home-blue);
}

.home-dir-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.85rem;
}

.home-dir-vendor {
  margin: 0;
  max-width: 36rem;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--home-muted);
}

.home-dir-vendor a {
  color: var(--home-blue);
  font-weight: 600;
  text-decoration: none;
}

.home-dir-vendor a:hover {
  text-decoration: underline;
}

.home-form-page {
  padding: clamp(2rem, 5vw, 3rem) 0 3rem;
}

.home-form-card {
  max-width: 640px;
  padding: 1.5rem 1.35rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--home-border);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06);
}

.home-form-card h1 {
  margin: 0 0 0.5rem;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.45rem, 3vw, 1.75rem);
  font-weight: 800;
}

.home-form-intro {
  margin: 0 0 1.35rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--home-muted);
}

.home-field {
  margin-bottom: 1rem;
}

.home-field label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
}

.home-field input,
.home-field select,
.home-field textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.14);
  font: inherit;
  font-size: 0.92rem;
  color: var(--home-text);
  background: #fff;
}

.home-field textarea {
  min-height: 120px;
  resize: vertical;
}

.home-field input:focus,
.home-field select:focus,
.home-field textarea:focus {
  outline: 2px solid rgba(37, 99, 235, 0.35);
  outline-offset: 1px;
}

.home-check {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.85rem;
  line-height: 1.5;
  color: #475569;
}

.home-check input {
  margin-top: 0.2rem;
}

.home-form-msg {
  margin: 0 0 1rem;
  padding: 0.65rem 0.75rem;
  border-radius: 10px;
  font-size: 0.88rem;
  display: none;
}

.home-form-msg.is-err {
  display: block;
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid #fecaca;
}

.home-form-msg.is-ok {
  display: block;
  background: #ecfdf5;
  color: #047857;
  border: 1px solid #a7f3d0;
}

.home-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.home-hp {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

/* Manifesto sayfası */
.manifest-page {
  padding: clamp(2rem, 5vw, 3rem) 0 3rem;
}

.manifest-page h1 {
  margin: 0 0 1rem;
  font-family: "Outfit", sans-serif;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.15;
}

.manifest-page .manifest-section {
  margin-bottom: 2.25rem;
}

.manifest-page .manifest-section h2 {
  margin: 0 0 0.75rem;
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
}

.manifest-page p {
  margin: 0 0 0.85rem;
  line-height: 1.7;
  color: #334155;
}

.manifest-article {
  scroll-margin-top: 5rem;
  padding-top: 1.5rem;
  margin-top: 1.5rem;
  border-top: 1px solid var(--home-border);
}

.manifest-article h2 {
  font-size: 1.15rem !important;
}
