*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

:root {
  --bg-deep: #0a0a0f;
  --bg-glow: #1a1a2e;
  --card: #faf9f7;
  --card-border: rgba(201, 169, 98, 0.22);
  --text: #1a1a1a;
  --text-muted: #5c5c5c;
  --text-light: #8a8a8a;
  --gold: #c9a962;
  --gold-light: #e8d5a3;
  --gold-dark: #a88b4a;
  --accent: #2d4a6f;
  --radius: 20px;
  --radius-sm: 12px;
  --shadow-card: 0 32px 64px rgba(0, 0, 0, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.04);
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Gilroy', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--bg-deep);
  min-height: 100vh;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Ambient background */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.page-bg::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 80%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(45, 74, 111, 0.35) 0%, transparent 70%);
  animation: drift 18s ease-in-out infinite alternate;
}

.page-bg::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -15%;
  width: 70%;
  height: 70%;
  background: radial-gradient(ellipse, rgba(201, 169, 98, 0.12) 0%, transparent 70%);
  animation: drift 22s ease-in-out infinite alternate-reverse;
}

@keyframes drift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(5%, 8%) scale(1.08); }
}

/* Layout */
.page {
  position: relative;
  z-index: 1;
  padding: 48px 20px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

/* Card */
.card {
  width: 100%;
  max-width: 640px;
  background: var(--card);
  border-radius: var(--radius);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  animation: cardIn 0.9s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hero */
.hero {
  position: relative;
  line-height: 0;
}

.hero__img {
  width: 100%;
  height: auto;
  display: block;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 10, 15, 0.85) 0%,
    rgba(10, 10, 15, 0.25) 45%,
    transparent 100%
  );
}

.hero__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px 36px 28px;
  color: #fff;
}

.hero__label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.hero__name {
  font-size: clamp(28px, 6vw, 36px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.hero__role {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.78);
  max-width: 420px;
}

/* Stats */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(201, 169, 98, 0.15);
  border-bottom: 1px solid rgba(201, 169, 98, 0.15);
}

.stat {
  background: var(--card);
  padding: 20px 12px;
  text-align: center;
}

.stat__num {
  display: block;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.stat__label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 4px;
  line-height: 1.3;
}

/* Body */
.body {
  padding: 36px 36px 40px;
}

.section {
  margin-bottom: 36px;
}

.section:last-child {
  margin-bottom: 0;
}

.section__title {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section__title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(201, 169, 98, 0.4), transparent);
}

.section__text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* Lists */
.list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list li {
  position: relative;
  padding-left: 20px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.55;
}

.list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
}

/* Clients */
.clients {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.client-tag {
  font-size: 12px;
  font-weight: 500;
  color: var(--accent);
  background: rgba(45, 74, 111, 0.07);
  border: 1px solid rgba(45, 74, 111, 0.12);
  border-radius: 100px;
  padding: 6px 14px;
  letter-spacing: 0.02em;
}

/* Quote */
.quote {
  position: relative;
  padding: 22px 24px;
  background: linear-gradient(135deg, rgba(45, 74, 111, 0.05) 0%, rgba(201, 169, 98, 0.06) 100%);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.quote p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  font-style: italic;
}

/* CTA */
.cta {
  margin-top: 8px;
}

.cta__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 18px 28px;
  background: var(--bg-deep);
  color: #fff;
  text-decoration: none;
  border-radius: var(--radius-sm);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.03em;
  border: 1px solid rgba(201, 169, 98, 0.3);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.cta__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.15) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition);
}

.cta__btn:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(201, 169, 98, 0.2);
}

.cta__btn:hover::before {
  opacity: 1;
}

.cta__btn svg {
  flex-shrink: 0;
  transition: var(--transition);
}

.cta__btn:hover svg {
  transform: translateX(3px);
}

.cta__btn span {
  position: relative;
  z-index: 1;
}

/* Footer */
.footer {
  margin-top: 28px;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.28);
  letter-spacing: 0.06em;
}

/* Responsive */
@media (max-width: 576px) {
  .page {
    padding: 24px 14px 32px;
  }

  .hero__content {
    padding: 24px 22px 20px;
  }

  .stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .stat {
    padding: 16px 8px;
  }

  .stat__num {
    font-size: 18px;
  }

  .stat__label {
    font-size: 9px;
  }

  .body {
    padding: 28px 22px 32px;
  }

  .section__text,
  .list li,
  .quote p {
    font-size: 14px;
  }
}

@media (max-width: 380px) {
  .stat__num {
    font-size: 16px;
  }
}
