/**
 * Ana sayfa (landing) stilleri. index.html ile kullanılır.
 */
.home-main {
  max-width: 900px;
  margin: 0 auto;
  padding: 48px 24px 64px;
}

.home-hero {
  text-align: center;
  margin-bottom: 56px;
}

.home-hero h1,
.home-hero-h1 {
  margin: 0 0 8px;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
}

.home-hero-tagline {
  margin: 0 0 20px;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.home-hero h1 span {
  color: var(--accent);
  background: linear-gradient(135deg, var(--accent), #2dd4bf);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.home-hero p {
  margin: 0 0 32px;
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.home-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.home-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  text-decoration: none;
  color: #022c22;
  background: linear-gradient(180deg, var(--accent) 0%, #2dd4bf 100%);
  box-shadow: 0 4px 20px rgba(94, 234, 212, 0.35);
  transition: transform 0.2s, box-shadow 0.2s;
}

.home-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(94, 234, 212, 0.4);
}

.home-btn-secondary {
  display: inline-flex;
  align-items: center;
  padding: 14px 24px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, color 0.2s;
}

.home-btn-secondary:hover {
  border-color: var(--border-bright);
  background: var(--accent-soft);
  color: var(--accent);
}

.home-section-title {
  margin: 0 0 28px;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
}

.home-platforms {
  margin-bottom: 56px;
}

.home-platforms-desc {
  text-align: center;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.5;
  max-width: 560px;
  margin: 0 auto 24px;
}

.home-platforms-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 32px 48px;
}

.home-platform-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.home-platform-name {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
}

.home-platform-logo {
  height: 50px;
  width: auto;
  max-width: 175px;
  object-fit: contain;
  filter: brightness(1.05);
  opacity: 0.95;
  transition: opacity 0.2s;
}

.home-platform-logo:hover {
  opacity: 1;
}

/* Hakkında / ürün metni */
.home-about {
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.home-about-block {
  margin-bottom: 36px;
}

.home-about-block:last-child {
  margin-bottom: 0;
}

.home-about-h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin: 0 0 12px;
  line-height: 1.3;
}

.home-about-block p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 0 12px;
}

.home-about-block p:last-child {
  margin-bottom: 0;
}

.home-about-list {
  margin: 0 0 12px;
  padding-left: 1.25rem;
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.6;
}

.home-about-list li {
  margin-bottom: 4px;
}

.home-about-disclaimer {
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}

.home-about-cta {
  text-align: center;
  padding-top: 12px;
}

.home-about-cta .home-hero-ctas {
  margin-top: 20px;
}

/* İpuçları bölümü */
.home-tips {
  margin-bottom: 56px;
}

.home-tips-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9375rem;
  max-width: 480px;
  margin: 0 auto 24px;
  line-height: 1.5;
}

.home-tips-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.home-tip-card {
  padding: 18px 20px;
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.03);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.home-tip-card:hover {
  border-color: var(--border-bright);
  box-shadow: 0 0 0 1px rgba(126, 231, 217, 0.12);
}

.home-tip-text {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.5;
}

.home-tips-empty {
  text-align: center;
  font-size: 0.9375rem;
  padding: 24px 16px;
}

.home-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}

.home-feature-card {
  position: relative;
  padding: 28px 24px;
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.03), 0 16px 40px -12px rgba(0,0,0,0.4);
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.home-feature-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--accent), transparent 70%);
  border-radius: 3px 0 0 3px;
  opacity: 0.9;
}

.home-feature-card:hover {
  border-color: var(--border-bright);
  box-shadow: 0 0 0 1px rgba(126, 231, 217, 0.15), 0 20px 48px -12px rgba(0,0,0,0.45);
}

.home-feature-icon {
  font-size: 2rem;
  line-height: 1;
  margin-bottom: 12px;
}

.home-feature-card h3 {
  margin: 0 0 10px;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--text);
}

.home-feature-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.55;
}

.home-features-tips-wrap {
  margin-top: 16px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.home-features-tips-title {
  margin: 0 0 8px;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
}

.home-features-tips-wrap .home-tips-subtitle {
  margin-bottom: 20px;
}

.home-features-tips-wrap .home-tips-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

.home-features-tips-wrap .home-tips-empty {
  text-align: center;
  font-size: 0.9375rem;
  color: var(--text-muted);
  padding: 24px 16px;
  margin: 0;
}

.home-steps {
  padding: 40px 28px;
  background: var(--surface);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.03), 0 16px 40px -12px rgba(0,0,0,0.4);
}

.home-steps h2 {
  margin: 0 0 28px;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
}

.home-steps-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.home-steps-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.home-steps-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 700;
  color: #022c22;
  background: var(--accent);
  border-radius: 50%;
}

.home-steps-list span {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.home-footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.home-footer-seo {
  max-width: 640px;
  margin: 0 auto 12px;
  line-height: 1.55;
}

.home-footer-seo:last-of-type {
  margin-bottom: 16px;
}

.home-footer-links {
  margin: 0;
  font-size: 0.8125rem;
  opacity: 0.9;
}

.home-footer-links a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}

.home-footer-links a:hover {
  text-decoration: underline;
  opacity: 1;
}

@media (max-width: 600px) {
  .home-main { padding: 32px 16px 48px; }
  .home-hero { margin-bottom: 40px; }
  .home-hero-tagline { font-size: 1.1rem; }
  .home-hero-ctas { flex-direction: column; width: 100%; }
  .home-btn-primary, .home-btn-secondary { width: 100%; justify-content: center; min-height: 48px; }
  .home-platforms { margin-bottom: 40px; }
  .home-platforms-desc { font-size: 0.9375rem; margin-bottom: 20px; }
  .home-platforms-list { gap: 24px 32px; }
  .home-about { margin-bottom: 40px; }
  .home-about-block { margin-bottom: 28px; }
  .home-about-h2 { font-size: 1.125rem; }
  .home-features-tips-wrap { padding-top: 20px; margin-top: 12px; }
  .home-features-tips-wrap .home-tips-list { grid-template-columns: 1fr; gap: 16px; }
  .home-features { margin-bottom: 40px; }
  .home-steps { padding: 28px 20px; }
}
