@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&display=swap');

:root {
  --bg: #fafafa;
  --card: #fafafa;
  --text: #152028;
  --muted: #6b7280;
  --primary: #008590;
  --shadow: 0 8px 28px rgba(2, 8, 23, 0.15);
  --radius: 22px;
}

* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, sans-serif;
  display: grid;
  place-items: center;
  padding: max(16px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right))
          max(16px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
}

/* Telefon çerçevesi */
.phone-frame {
  width: min(94vw, 420px);
  background: var(--card);
  border-radius: clamp(20px, 5vw, 40px);
  box-shadow: var(--shadow);
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

/* Üst başlık */
.hero {
  background: linear-gradient(180deg, #0ea5a5, #008590 65%);
  padding: clamp(28px, 6vw, 44px) clamp(16px, 5vw, 24px) clamp(10px, 4vw, 16px);
  text-align: center;
  color: #fafafa;
}

.logo {
  aspect-ratio: 3025 / 1845;
  width: clamp(160px, 48vw, 240px);
  background: #fafafa;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  margin: 0 auto clamp(12px, 3vw, 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.2);
  transition: transform 0.3s ease;
}

/* Başlık yazısı */
.title {
  font-weight: 800;
  letter-spacing: .6px;
  line-height: 1.25;
  font-size: clamp(18px, 5.6vw, 24px);
  margin-top: clamp(16px, 5vw, 28px);
  color: #fafafa;
}
.title .thin { font-weight: 500; }
.title .bold { font-weight: 700; }

/* İçerik bölümü */
.section {
  padding: clamp(6px, 1.5vw, 10px) clamp(14px, 4vw, 20px) clamp(18px, 5vw, 30px);
}

/* Hizmet listesi */
.bullets {
  margin: clamp(10px, 2.5vw, 16px) auto clamp(4px, 1.5vw, 8px) auto;
  padding-left: 1.8em;
  max-width: 520px;
  color: #222;
  font-size: clamp(14px, 4.2vw, 17px);
  font-weight: 400;
  list-style-position: outside;
}
.bullets li {
  margin: 0.55em 0;
  line-height: 1.55;
}

/* Kart alanı */
.card {
  background: var(--card);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  padding: clamp(8px, 2.2vw, 12px) clamp(12px, 3.6vw, 16px);
  margin-top: clamp(12px, 3.8vw, 20px);
  margin-bottom: clamp(4px, 1.6vw, 8px);
  box-shadow: 0 4px 12px rgba(2,8,23,0.05);
}

/* Bilgi satırları */
.row {
  display: grid;
  grid-template-columns: clamp(36px, 12vw, 56px) 1fr;
  gap: clamp(8px, 3.2vw, 14px);
  align-items: center;
  padding: clamp(6px, 2vw, 10px) 0;
}
.row + .row { border-top: 1px dashed #e5e7eb; }

.label {
  color: var(--muted);
  font-size: clamp(12px, 3.6vw, 13px);
  font-weight: 500;
}

.value {
  font-weight: 700;
  font-size: clamp(16px, 4.8vw, 18px);
  color: #222;
  word-break: break-word;
}

.value a {
  color: inherit;
  text-decoration: none;
}

/* Footer */
.footer {
  padding: 8px 20px clamp(14px, 4vw, 24px);
  text-align: center;
  color: var(--muted);
  font-size: 12px;
}

@media (max-width: 360px) {
  .phone-frame { border-radius: 28px; }
  .logo { border-radius: 16px; }
}
