:root {
  --ink: #342f69;
  --ink-soft: #4b467d;
  --lime: #b8d90b;
  --glass: rgba(255, 255, 255, 0.58);
  color-scheme: light;
  font-family: "Vazirmatn", Tahoma, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  padding: 20px;
  background: linear-gradient(155deg, #f6f3ff 0%, #ded8f1 56%, #eee9fb 100%);
  color: var(--ink);
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.info-shell {
  width: min(100%, 620px);
  min-height: calc(100vh - 40px);
  margin: 0 auto;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.35);
  box-shadow: 0 24px 60px rgba(52, 47, 105, 0.14);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
}

.info-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.info-logo {
  width: 116px;
  height: auto;
  display: block;
}

.info-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.info-action {
  min-height: 40px;
  padding: 8px 13px;
  border: 0;
  border-radius: 14px;
  background: rgba(218, 210, 242, 0.82);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.info-action svg {
  width: 18px;
  height: 18px;
  display: block;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.info-card {
  margin-top: 22px;
  padding: 26px 24px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 26px;
  background: var(--glass);
  box-shadow: 0 18px 38px rgba(52, 47, 105, 0.1);
}

.info-kicker {
  margin: 0 0 7px;
  color: #728700;
  font-size: 12px;
  font-weight: 800;
}

h1,
h2 {
  letter-spacing: 0;
}

h1 {
  margin: 0 0 16px;
  font-size: clamp(23px, 6vw, 30px);
  line-height: 1.45;
}

h2 {
  margin: 24px 0 10px;
  font-size: 18px;
  line-height: 1.55;
}

p,
li {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 2;
}

p {
  margin: 0 0 12px;
}

ul {
  margin: 0;
  padding-right: 21px;
}

li::marker {
  color: var(--lime);
}

.contact-details {
  display: grid;
  gap: 9px;
  margin-top: 20px;
}

.contact-detail {
  min-height: 58px;
  padding: 10px 14px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.48);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-decoration: none;
}

.contact-detail-heading {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 13px;
  font-weight: 800;
}

.contact-detail-heading svg {
  width: 28px;
  height: 28px;
  padding: 5px;
  border-radius: 9px;
  background: rgba(218, 210, 242, 0.66);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail b {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.8;
  text-align: left;
}

.contact-address {
  align-items: flex-start;
}

.contact-links {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.contact-links a {
  min-height: 48px;
  padding: 10px 14px;
  border-radius: 15px;
  background: rgba(218, 210, 242, 0.56);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.contact-label {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.contact-bale-icon {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  padding: 5px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.58);
  fill: currentColor;
}

.info-footer {
  padding: 20px 8px 4px;
  text-align: center;
}

.info-footer a {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 520px) {
  body {
    padding: 0;
  }

  .info-shell {
    min-height: 100vh;
    padding: 18px;
    border-radius: 0;
  }

  .info-logo {
    width: 100px;
  }

  .info-action {
    position: relative;
    width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0;
    font-size: 0;
    line-height: 0;
  }

  .info-action svg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 19px;
    height: 19px;
    transform: translate(-50%, -50%);
  }

  .info-card {
    padding: 23px 19px;
  }

  .contact-detail {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
  }

  .contact-detail b {
    padding-right: 37px;
    text-align: right;
  }
}
