:root {
  --bg-main: #120e1c;
  --bg-card: #1d1829;
  --accent: #f2c94c;
  --accent-soft: #f7d97b;
  --text-main: #f5f5f5;
  --text-soft: #d0cde1;
  --text-muted: #a29cbf;
  --btn-primary: #f2c94c;
  --btn-primary-hover: #f7d97b;
  --radius-lg: 18px;
  --radius-full: 999px;
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.45);
  --shadow-btn: 0 10px 25px rgba(0, 0, 0, 0.4);
  --max-width: 430px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: system-ui, sans-serif;
  background: radial-gradient(circle at top, #2a1f4a 0, #120e1c 36%, #050308 100%);
  color: var(--text-main);
  display: flex;
  justify-content: center;
  padding: 24px 12px 36px;
}

.page {
  width: 100%;
  max-width: var(--max-width);
  background: linear-gradient(160deg, #1b1527 0, #0d0915 80%);
  border-radius: 28px;
  padding: 22px 18px 28px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.hero-header {
  text-align: center;
  margin-bottom: 18px;
}

.hero-badge {
  display: inline-flex;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(242, 201, 76, 0.12);
  color: var(--accent-soft);
  font-size: 0.77rem;
  margin-bottom: 8px;
  border: 1px solid rgba(242, 201, 76, 0.3);
}

.hero-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.hero-subtitle {
  font-size: 0.82rem;
  color: var(--text-soft);
  margin-bottom: 4px;
}

.hero-line {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.cta-main {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--btn-primary);
  color: #2b1c09;
  font-weight: 600;
  padding: 11px 16px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  box-shadow: var(--shadow-btn);
  margin-bottom: 18px;
  text-decoration: none;
  transition: .12s;
}

.cta-main:hover {
  background: var(--btn-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.55);
}

.profile-card {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.profile-photo-wrapper {
  padding: 4px;
  background: radial-gradient(circle at top, #f2c94c44, transparent);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.profile-photo {
  width: 165px;
  height: 215px;
  object-fit: cover;
  border-radius: 16px;
}

.services-title {
  text-align: center;
  font-size: 0.82rem;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(242, 201, 76, 0.2);
  text-decoration: none;
  color: var(--text-main);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  transition: .12s;
}

.service-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.5);
  border-color: rgba(242, 201, 76, 0.6);
}

.service-title {
  font-size: 0.9rem;
  font-weight: 600;
}

.service-desc {
  font-size: 0.78rem;
  color: var(--text-soft);
}

.cta-secondary {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  border-radius: var(--radius-full);
  border: 1px solid rgba(242, 201, 76, 0.55);
  color: var(--accent-soft);
  padding: 10px 14px;
  font-size: 0.86rem;
  margin-top: 16px;
  transition: .12s;
}

.cta-secondary:hover {
  background: rgba(242, 201, 76, 0.08);
  transform: translateY(-1px);
}

.footer {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 18px;
}
