:root {
  --page-bg: #018a56;
  --glass: rgba(164, 241, 193, 0.18);
  --glass-strong: rgba(164, 241, 193, 0.24);
  --card-border: rgba(214, 255, 229, 0.24);
  --text: #ddf8e8;
  --muted: #c8edd9;
  --deep: rgba(8, 88, 58, 0.78);
  --shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  --radius-xl: 20px;
  --radius-lg: 16px;
  --radius-md: 12px;
  --radius-pill: 999px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  font-family: "Sora", sans-serif;
  color: var(--text);
  background: var(--page-bg);
}

.scene {
  min-height: 100vh;
  width: min(100% - 28px, 980px);
  margin: 0 auto;
  display: grid;
  place-items: center;
  padding: 22px 0;
}

.content-area {
  width: 100%;
  display: grid;
  grid-template-columns: 1.3fr 0.95fr;
  gap: 14px;
  align-items: stretch;
}

.glass {
  border: 1px solid var(--card-border);
  border-radius: var(--radius-xl);
  background: linear-gradient(130deg, var(--glass), var(--glass-strong));
  box-shadow: var(--shadow);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
}

.card-main {
  padding: clamp(14px, 1.8vw, 24px);
  height: 100%;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  border: 1px solid rgba(219, 255, 233, 0.34);
  background: rgba(219, 255, 233, 0.08);
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 700;
}

.brand-row h1 {
  font-size: clamp(30px, 3.1vw, 48px);
  line-height: 1;
}

.status-pill {
  margin-top: clamp(12px, 1.3vw, 18px);
  display: inline-block;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(215, 255, 229, 0.35);
  background: rgba(215, 255, 229, 0.1);
  color: #daf8e8;
  font-size: clamp(14px, 1vw, 20px);
}

.card-main h2 {
  margin-top: 12px;
  font-size: clamp(38px, 3.8vw, 62px);
  line-height: 1.05;
  letter-spacing: -1px;
}

.card-main p {
  margin-top: 14px;
  color: var(--muted);
  font-size: clamp(17px, 1.1vw, 25px);
  line-height: 1.45;
  max-width: 95%;
}

.progress-track {
  margin-top: 16px;
  width: 100%;
  height: 10px;
  border-radius: var(--radius-pill);
  background: var(--deep);
  overflow: hidden;
}

.progress {
  display: block;
  width: 28%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #dbfaea, #c5f0d9);
}

.tags {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tags span {
  border: 1px solid rgba(215, 255, 229, 0.34);
  border-radius: var(--radius-pill);
  background: rgba(215, 255, 229, 0.1);
  color: #dbf9e9;
  padding: 8px 12px;
  font-size: clamp(14px, 0.9vw, 18px);
  font-weight: 500;
}

.card-side {
  padding: clamp(12px, 1.1vw, 18px);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.info-box {
  border: 1px solid rgba(216, 255, 230, 0.24);
  border-radius: var(--radius-md);
  background: rgba(168, 242, 196, 0.11);
  padding: clamp(12px, 1vw, 16px);
}

.info-box h3 {
  margin-bottom: 8px;
  font-size: clamp(24px, 1.7vw, 36px);
}

.info-box p {
  color: #d7f4e4;
  font-size: clamp(15px, 0.95vw, 20px);
  line-height: 1.42;
}

.info-box p + p {
  margin-top: 4px;
}

.side-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-size: clamp(13px, 0.8vw, 16px);
  color: #d4f5e1;
}

.cta-group {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.contact-link {
  color: inherit;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

.cta {
  text-decoration: none;
  color: #ddf8e8;
  background: transparent;
  border: 1px solid rgba(214, 255, 229, 0.38);
  border-radius: var(--radius-pill);
  padding: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  white-space: nowrap;
}

.icon-btn {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.icon-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.cta-with-label {
  width: auto;
  height: 38px;
  padding: 8px 12px;
  gap: 6px;
}

.icon-label {
  font-size: 13px;
  line-height: 1;
}

.sahibinden-logo {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  background: #ffd532;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  line-height: 1;
  font-weight: 800;
}

.cta:hover {
  background: rgba(214, 255, 229, 0.12);
}

.sahibinden-btn {
  padding: 8px 12px;
  text-transform: none;
  font-weight: 600;
  background: #ffd532;
  color: #111111;
  border-color: #ffd532;
}

@media (min-width: 681px) {
  .side-footer {
    gap: 14px;
  }

  .side-footer > span {
    white-space: nowrap;
    line-height: 1.2;
  }

  .cta-group {
    margin-left: auto;
    flex-wrap: nowrap;
    gap: 8px;
  }

  .cta {
    min-height: 36px;
    padding: 7px 10px;
  }

  .cta-with-label {
    height: 36px;
    padding: 7px 10px;
  }
}

@media (max-width: 980px) {
  .scene {
    width: min(100% - 20px, 760px);
    padding: 14px 0;
  }

  .content-area {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 10px;
  }

  .card-main h2 {
    font-size: clamp(36px, 10vw, 58px);
  }

  .card-main p {
    max-width: 100%;
    font-size: clamp(16px, 4.3vw, 24px);
  }

  .status-pill {
    font-size: clamp(13px, 3.7vw, 20px);
  }

  .info-box h3 {
    font-size: clamp(23px, 6.3vw, 34px);
  }

  .info-box p {
    font-size: clamp(15px, 4.1vw, 22px);
  }
}

@media (max-width: 680px) {
  .scene {
    width: min(100% - 12px, 460px);
    padding: 10px 0;
  }

  .glass {
    border-radius: 16px;
  }

  .card-main,
  .card-side {
    padding: 13px;
  }

  .brand-row {
    gap: 8px;
  }

  .logo-mark {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    font-size: 18px;
  }

  .brand-row h1 {
    font-size: clamp(28px, 11vw, 44px);
  }

  .card-main h2 {
    margin-top: 10px;
    font-size: clamp(35px, 13vw, 52px);
    letter-spacing: -0.8px;
  }

  .card-main p {
    margin-top: 12px;
    line-height: 1.5;
  }

  .progress-track {
    height: 9px;
    margin-top: 14px;
  }

  .tags {
    margin-top: 12px;
    gap: 7px;
  }

  .tags span {
    padding: 7px 10px;
    font-size: 13px;
  }

  .side-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-group {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
  }

  .cta {
    text-align: center;
    min-height: 44px;
  }

  .icon-btn {
    width: 44px;
    height: 44px;
  }

  .cta-with-label {
    width: auto;
    height: 44px;
    padding: 10px 12px;
  }

  .icon-label {
    font-size: 12px;
  }
}
