:root {
  --bg-main: #151515;
  --bg-section: #1e1e1e;
  --accent: #ff2e63;
  --accent-soft: #ff6b81;
  --text-main: #f5f5f5;
  --text-muted: #b3b3b3;
  --green: #2ecc71;
  --red: #e74c3c;
  --border-soft: rgba(255, 255, 255, 0.08);
  --card-radius: 14px;
  --transition-fast: 0.2s ease-in-out;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #222 0, var(--bg-main) 45%, #000 100%);
  color: var(--text-main);
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 40px 12px;
}

.page-wrapper {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background: rgba(0, 0, 0, 0.32);
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.7);
  padding: 40px 18px 32px;
}

@media (min-width: 768px) {
  .page-wrapper {
    padding: 48px 48px 40px;
  }
}

.hero-header {
  text-align: center;
  margin-bottom: 36px;
}

.hero-avatar {
  width: 100%;
  margin: 0 auto 14px;
  border: 3px solid rgba(255, 255, 255, 0.5);
  background: radial-gradient(circle at 30% 20%, #ffffff 0, #999 26%, #444 52%, #111 100%);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.9);
  position: relative;
  overflow: hidden;
}

.hero-name {
  font-size: 1.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 600;
}

.hero-subtitle-main {
  font-weight: 600;
  color: var(--accent-soft);
  margin-top: 6px;
  font-size: 1.05rem;
}

.hero-subtitle-secondary {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.98rem;
  margin-bottom: 14px;
}

.hero-divider {
  width: 60px;
  height: 3px;
  margin: 10px auto 18px;
  background: linear-gradient(90deg, var(--accent), var(--accent-soft));
  border-radius: 999px;
}

.hero-description {
  max-width: 640px;
  margin: 0 auto;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}

.firma-aciklama {
  margin-top: 20px;
  padding: 20px 18px 18px;
  text-align: left;
  background: linear-gradient(
    145deg,
    rgba(30, 30, 30, 0.95) 0%,
    rgba(18, 18, 22, 0.98) 100%
  );
  border-radius: var(--card-radius);
  border: 1px solid var(--border-soft);
  border-left: 3px solid var(--accent-soft);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.45);
}

@media (min-width: 768px) {
  .firma-aciklama {
    padding: 24px 26px 22px;
  }
}

.firma-aciklama-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text-main);
  margin: 0 0 14px;
  letter-spacing: 0.02em;
}

.firma-aciklama-text {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.firma-tagline {
  font-size: 0.95rem;
  font-weight: 600;
  font-style: italic;
  color: var(--accent-soft);
  text-align: center;
  margin: 18px 0 20px;
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(255, 46, 99, 0.08);
  border: 1px solid rgba(255, 107, 129, 0.25);
}

.firma-alt-markalar-title {
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--text-main);
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-soft);
}

.firma-brand {
  padding: 14px 0 16px;
  border-bottom: 1px solid var(--border-soft);
}

.firma-brand-last {
  border-bottom: none;
  padding-bottom: 0;
}

.firma-brand-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--accent-soft);
  margin: 0 0 10px;
  line-height: 1.4;
}

.section-sigorta {
  border-left: 3px solid rgba(93, 173, 226, 0.85);
  background: linear-gradient(
    135deg,
    rgba(30, 30, 30, 1) 0%,
    rgba(22, 32, 42, 0.95) 100%
  );
}

.section-sigorta .section-title {
  color: #7eb8e8;
}

.sigorta-logo-wrap {
  display: flex;
  justify-content: center;
  margin: 4px 0 18px;
}

.sigorta-logo {
  width: 100%;
  max-width: 280px;
  height: auto;
  display: block;
  border-radius: 14px;
  padding: 12px 16px;
  background: #f4f1eb;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.4);
  object-fit: contain;
}

.sigorta-lead {
  font-size: 0.93rem;
  line-height: 1.65;
  margin-bottom: 10px;
}

.sigorta-list {
  margin-bottom: 12px;
}

.section-sigorta .styled-list li::before {
  color: #7eb8e8;
}

.section {
  background: var(--bg-section);
  border-radius: var(--card-radius);
  border: 1px solid var(--border-soft);
  padding: 18px 18px 16px;
  margin-bottom: 18px;
}

@media (min-width: 768px) {
  .section {
    padding: 22px 24px 20px;
    margin-bottom: 22px;
  }
}

.section-title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-soft);
  font-weight: 600;
  margin-bottom: 8px;
}

.section-title i {
  font-size: 1.05rem;
}

.section-body {
  font-size: 0.93rem;
  color: var(--text-main);
}

.section-body p {
  margin-bottom: 4px;
}

.section-body small {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.muted-text {
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1.6;
}

.list-title {
  font-weight: 600;
  font-size: 0.94rem;
  margin-bottom: 6px;
  color: var(--accent-soft);
}

.styled-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.styled-list li {
  margin-bottom: 4px;
}

.styled-list li::before {
  content: "•";
  color: var(--accent-soft);
  margin-right: 6px;
}

.promise-box {
  background: #000;
  border-radius: 16px;
  padding: 20px 18px 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  margin: 22px 0;
  text-align: center;
}

.promise-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.promise-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.promise-subtitle span {
  color: var(--accent-soft);
  font-weight: 500;
}

.btn-promise {
  border-radius: 999px;
  font-size: 0.9rem;
  padding: 10px 22px;
  font-weight: 500;
  width: 100%;
  max-width: 260px;
  border-width: 0;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    background-color var(--transition-fast), color var(--transition-fast);
}

.btn-promise.btn-success {
  background: var(--green);
  color: #fff;
  box-shadow: 0 10px 30px rgba(46, 204, 113, 0.35);
}

.btn-promise.btn-success:hover {
  background: #27ae60;
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(46, 204, 113, 0.4);
}

.btn-promise.btn-outline-danger {
  border: 1px solid var(--red);
  color: #fff;
  background: rgba(231, 76, 60, 0.1);
}

.btn-promise.btn-outline-danger:hover {
  background: var(--red);
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(231, 76, 60, 0.45);
}

.promise-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

@media (min-width: 576px) {
  .promise-buttons {
    flex-direction: row;
  }
}

.top5-title {
  font-weight: 600;
  font-size: 0.98rem;
  margin-bottom: 6px;
}

.top5-subtitle {
  font-size: 0.86rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.platform-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.platform-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  color: #111;
  background: #f5f5f5;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast),
    filter var(--transition-fast);
  flex: 1 1 calc(50% - 12px);
  text-align: center;
}

.platform-logo-text {
  white-space: nowrap;
}

.platform-sahibinden {
  background: #ffe000;
  color: #111;
}

.platform-ilanlar {
  background: linear-gradient(135deg, #ff7a18, #af002d 70%);
  color: #fff;
}

.platform-emlakjet {
  background: linear-gradient(135deg, #ff6b2c 0%, #e85d04 55%, #c2410c 100%);
  color: #fff;
}

.platform-logo:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.55);
  filter: brightness(1.03);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

@media (min-width: 576px) {
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--border-soft);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-main);
  text-decoration: none;
  font-size: 0.87rem;
  transition: background-color var(--transition-fast), border-color var(--transition-fast),
    transform var(--transition-fast), box-shadow var(--transition-fast);
}

.contact-item i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.9rem;
  color: var(--accent-soft);
}

.contact-item span {
  white-space: nowrap;
}

.contact-item:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.65);
  color: var(--text-main);
}

.footer {
  text-align: center;
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer a {
  color: var(--accent-soft);
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}
