:root {
  --sm-red: #E30613;
  --sm-red-dark: #B8050F;
  --ink: #1a1a1a;
  --muted: #6b6b6b;
  --bg: #fafafa;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: linear-gradient(180deg, var(--sm-red) 0%, var(--sm-red) 220px, var(--bg) 220px);
  color: var(--ink);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.card {
  background: #fff;
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
  padding: 40px 28px 32px;
  text-align: center;
  margin-top: 40px;
}

.photo-wrap {
  margin-top: -104px;
  margin-bottom: 16px;
}

.photo {
  width: 128px;
  height: 128px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

h1 {
  font-size: 24px;
  margin: 0 0 4px;
  color: var(--ink);
}

.role {
  margin: 0;
  color: var(--sm-red);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.2px;
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--sm-red);
  border-radius: 2px;
  margin: 20px auto;
}

.tagline {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 28px;
}

.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--sm-red);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  padding: 15px 20px;
  border-radius: 12px;
  transition: background 0.2s ease, transform 0.15s ease;
  box-shadow: 0 8px 20px rgba(227, 6, 19, 0.3);
}

.whatsapp-btn:hover {
  background: var(--sm-red-dark);
  transform: translateY(-1px);
}

.contact-line {
  margin: 22px 0 0;
  font-size: 14px;
  color: var(--muted);
}

.contact-line a {
  color: var(--muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.contact-line a:hover {
  border-bottom-color: var(--muted);
}

footer {
  margin: 28px 0 8px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
}

@media (min-width: 480px) {
  .card {
    padding: 44px 40px 36px;
  }
}
