* {
  box-sizing: border-box
}

:root {
  --yellow: #ffc83d;
  --yellow-dark: #f3b91f;
  --navy: #07145d;
  --text: #18213d;
  --muted: #6f7892;
  --card: #ffffff;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 200, 61, .30), transparent 34%),
    linear-gradient(135deg, #fffdf7 0%, #f5f7fb 100%);
}

.page {
  min-height: 100vh;
  padding: 28px 16px 42px;
  display: flex;
  justify-content: center
}

.review-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  margin-bottom: 20px;
}

.profile-card {
  position: relative;
  overflow: hidden;
  width: min(100%, 480px);
  background: var(--card);
  border: 1px solid rgba(7, 20, 93, .08);
  border-radius: 32px;
  padding: 28px 22px 24px;
  box-shadow: 0 22px 70px rgba(7, 20, 93, .13);
  text-align: center;
}

.brand-glow {
  position: absolute;
  inset: -120px -100px auto;
  height: 270px;
  background: radial-gradient(circle, rgba(255, 200, 61, .34), transparent 68%);
  pointer-events: none
}

.logo-wrap {
  position: relative;
  margin: 0 auto 13px;
  width: 154px;
  height: 154px;
  /* border-radius: 30px; */
  /* background: #ffc83d; */
  display: grid;
  place-items: center;
  /* box-shadow: 0 14px 32px rgba(255, 200, 61, .28) */
}

.logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 30px
}

.eyebrow {
  position: relative;
  margin: 8px 0 6px;
  color: #b17d00;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase
}

h1 {
  position: relative;
  margin: 0;
  color: var(--navy);
  font-size: 32px;
  line-height: 1.1;
  font-weight: 900
}

.designation {
  margin: 8px 0 13px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600
}

.verified {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 99px;
  background: #fff6d8;
  color: #765700;
  font-size: 12px;
  font-weight: 800
}

.verified span {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--yellow);
  display: grid;
  place-items: center;
  color: #fff
}

.actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 22px 0
}

.action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 52px;
  padding: 12px;
  border-radius: 15px;
  background: #f7f8fc;
  color: var(--navy);
  text-decoration: none;
  font-weight: 800;
  border: 1px solid #e8ebf3;
  transition: .2s
}

.action:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(7, 20, 93, .09)
}

.action.primary {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy)
}

.action.whatsapp {
  background: #f0fff5;
  color: #14843e;
  border-color: #ccefd9
}

.icon {
  font-size: 18px
}

.info-box {
  background: #f8f9fc;
  border-radius: 20px;
  padding: 7px 16px;
  text-align: left
}

.info-row {
  display: flex;
  gap: 13px;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid #e7eaf2
}

.info-row:last-child {
  border-bottom: 0
}

.info-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 12px;
  background: #fff0bf;
  display: grid;
  place-items: center;
  color: var(--navy);
  font-weight: 900
}

.info-row small {
  display: block;
  color: #8a91a5;
  font-size: 11px;
  margin-bottom: 2px
}

.info-row a,
.info-row span {
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  word-break: break-word
}

.services {
  margin: 22px 0 18px;
  text-align: left
}

.services h2 {
  margin: 0 0 11px;
  font-size: 18px;
  color: var(--navy)
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px
}

.service {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid #eceef4;
  border-radius: 14px;
  background: #fff;
  font-size: 12px;
  font-weight: 800
}

.service:first-letter {
  font-size: 18px
}

.main-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px
}

.main-buttons button {
  min-height: 52px;
  border-radius: 15px;
  padding: 10px;
  border: 0;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: .2s
}

.main-buttons button:hover {
  transform: translateY(-2px)
}

.save-btn {
  background: var(--yellow);
  color: var(--navy)
}

.share-btn {
  background: var(--navy);
  color: #fff
}

.website {
  display: block;
  margin: 20px 0 14px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 900;
  text-decoration: none
}

.socials {
  display: flex;
  justify-content: center;
  gap: 10px
}

.socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f1f3f8;
  color: var(--navy);
  text-decoration: none;
  font-weight: 900;
  font-size: 17px
}

.footer {
  margin: 16px 0 0;
  color: #9aa1b3;
  font-size: 11px;
  font-weight: 700
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  transform: translate(-50%, 20px);
  opacity: 0;
  pointer-events: none;
  background: var(--navy);
  color: #fff;
  padding: 12px 18px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(7, 20, 93, .25);
  transition: .25s;
  z-index: 10
}

.toast.show {
  opacity: 1;
  transform: translate(-50%, 0)
}

@media(max-width:390px) {
  .profile-card {
    padding: 22px 15px
  }

  h1 {
    font-size: 28px
  }

  .actions,
  .main-buttons {
    gap: 8px
  }
}