:root {
  --bg: #1b0920;
  --bg-soft: #2b0e32;
  --card: #26132b;
  --text: #f8fafc;
  --muted: #cbd5e1;
  --light-bg: #f8fafc;
  --light-text: #111827;
  --light-muted: #475569;
  --accent: #f5c542;
  --accent-dark: #c89616;
  --border: rgba(255, 255, 255, 0.12);
  --shadow: 0 20px 45px rgba(0, 0, 0, 0.25);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img,
video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section-light {
  background: var(--light-bg);
  color: var(--light-text);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(13, 17, 23, 0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  font-weight: 800;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 1.2rem;
}

.hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(245, 197, 66, 0.22), transparent 38%),
    linear-gradient(135deg, #1b0920 0%, #2b0e32 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  gap: 48px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.05em;
  margin-bottom: 16px;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.hero-text {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 680px;
  margin-bottom: 32px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: #111827;
}

.btn-primary:hover {
  background: #ffd95c;
}

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--text);
}

.hero-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 32px;
  box-shadow: var(--shadow);
}

.card-label,
.sample-label,
.popular {
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}

.hero-card ul,
.analysis-card ul {
  padding-left: 20px;
  margin-bottom: 0;
}

.hero-card li {
  margin-bottom: 12px;
  color: var(--muted);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-heading p {
  color: var(--muted);
}

.section-light .section-heading p,
.section-light p {
  color: var(--light-muted);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-card,
.work-card,
.pricing-card,
.analysis-card,
.contact-box {
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.service-card {
  background: #ffffff;
  color: var(--light-text);
  padding: 26px;
  border: 1px solid #e2e8f0;
}

.service-card p {
  color: var(--light-muted);
  margin-bottom: 0;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.work-card {
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
}

.work-card {

  text-align: center;

}

.work-content {

  text-align: left;

}

.video-placeholder {
  min-height: 360px;
  background:
    linear-gradient(135deg, rgba(245, 197, 66, 0.25), rgba(255, 255, 255, 0.04)),
    #111827;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  color: var(--text);
  font-weight: 800;
  font-size: 1.4rem;
}

.video-embed {
  width: 100%;
  max-width: 760px;
  margin: 0 auto 1.25rem auto;
  overflow: hidden;
  border-radius: 18px;
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.video-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.wide-video {

  aspect-ratio: 16 / 9;

}

.vertical-video {

  aspect-ratio: 9 / 16;

  max-width: 360px;

}

.work-content {
  padding: 24px;
}

.work-content p {
  color: var(--muted);
}

.text-link {
  color: var(--accent);
  font-weight: 700;
}

.analysis-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: start;
}

.analysis-card {
  background: #ffffff;
  color: var(--light-text);
  padding: 32px;
  border: 1px solid #e2e8f0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.stats-grid div {
  background: #f1f5f9;
  padding: 16px;
  border-radius: 16px;
}

.stats-grid strong {
  display: block;
  font-size: 1.45rem;
}

.stats-grid span {
  color: var(--light-muted);
  font-size: 0.85rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.pricing-card {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 30px;
}

.pricing-card.featured {
  border-color: rgba(245, 197, 66, 0.7);
  transform: translateY(-10px);
}

.price {
  color: var(--accent);
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 14px;
}

.pricing-card p:not(.price):not(.popular) {
  color: var(--muted);
}

.contact-section {
  background: linear-gradient(135deg, #1b0920 0%, #2b0e32 100%);
}

.contact-box {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border);
  padding: 48px;
  text-align: center;
  max-width: 820px;
}

.contact-box p {
  color: var(--muted);
}

.small-note {
  margin-top: 18px;
  font-size: 0.9rem;
}

.footer {
  border-top: 1px solid var(--border);
  padding: 24px 0;
  color: var(--muted);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer a {
  color: var(--accent);
  font-weight: 700;
}

@media (max-width: 900px) {

  .hero-grid,
  .analysis-grid,
  .cards-grid,
  .work-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .pricing-card.featured {
    transform: none;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 64px 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 16px;
    right: 16px;
    background: #111827;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 18px;
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links.active {
    display: flex;
  }

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

  .contact-box {
    padding: 32px 20px;
  }
}