:root {
  --yellow: #ffd21f;
  --yellow-soft: #fff4b8;
  --gold-soft: #fff8df;
  --black: #171717;
  --gray: #666666;
  --light: #fafafa;
  --white: #ffffff;
  --border: #e8e8e8;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.narrow {
  width: min(780px, 92%);
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(8px);
}

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

.logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.logo img {
  height: 58px;
  width: auto;
  display: block;
}

nav {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
}

nav a {
  text-decoration: none;
  color: var(--gray);
  font-weight: 600;
}

nav a:hover {
  color: var(--black);
}

/* Hero */

.hero {
  padding: 90px 0;
  background:
    radial-gradient(circle at top right, var(--yellow-soft), transparent 35%),
    linear-gradient(180deg, #ffffff, #fffdf2);
}

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

.eyebrow {
  font-weight: 800;
  color: #8b7000;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.8rem;
}

h1 {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin: 14px 0 24px;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  margin: 10px 0 22px;
}

h3 {
  margin: 0 0 10px;
}

.hero-text {
  font-size: 1.2rem;
  color: var(--gray);
  max-width: 650px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.button {
  display: inline-block;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
}

.button.secondary {
  background: var(--yellow);
  color: var(--black);
}

.hero-logo-card {
  width: min(420px, 100%);
  margin-left: auto;
  padding: 22px;
  border-radius: 32px;
  background: #fff8df;
  border: 1px solid var(--border);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.12);
}

.hero-logo-card img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

.small {
  color: #d9d9d9;
  font-size: 0.95rem;
}

/* Sections */

.section {
  padding: 84px 0;
}

.soft {
  background: var(--light);
}

/* Image above services */

.section-image {
  width: min(520px, 100%);
  margin: 0 auto 46px;
  padding: 22px;
  border-radius: 28px;
  background: var(--gold-soft);
  border: 1px solid var(--border);
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.10);
}

.section-image img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
  display: block;
  border-radius: 20px;
}

/* Cards */

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

.card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--white);
}

.card p,
.steps p,
.narrow p {
  color: var(--gray);
}

/* Steps */

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 36px;
}

.steps span {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  background: var(--yellow);
  border-radius: 50%;
  font-weight: 800;
}

/* Contact */

.contact {
  background: var(--yellow);
}

.contact .eyebrow {
  color: var(--black);
}

.contact-box {
  margin-top: 28px;
  padding: 28px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 18px 55px rgba(0, 0, 0, 0.08);
}

.contact-box p {
  margin: 0 0 12px;
}

.contact-box p:last-child {
  margin-bottom: 0;
}

.contact-box a {
  font-weight: 700;
  color: var(--black);
}

/* Footer */

.site-footer {
  padding: 32px 0;
  background: var(--black);
  color: var(--white);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.95rem;
}

.footer-grid p {
  margin: 0;
}

.site-footer a {
  color: var(--yellow);
  text-decoration: none;
}

/* Mobile */

@media (max-width: 800px) {
  .nav {
    min-height: 70px;
  }

  .logo img {
    height: 46px;
  }

  nav {
    display: none;
  }

  .hero {
    padding: 64px 0;
  }

  .hero-grid,
  .cards,
  .steps {
    grid-template-columns: 1fr;
  }

.hero-logo-card {
  width: min(340px, 100%);
  margin: 32px auto 0;
  padding: 16px;
  border-radius: 24px;
}

.hero-logo-card img {
  border-radius: 18px;
}
  }

  .section {
    padding: 60px 0;
  }

  .section-image {
    width: min(360px, 100%);
    padding: 16px;
    margin-bottom: 34px;
    border-radius: 24px;
  }

  .section-image img {
    max-height: 280px;
    border-radius: 18px;
  }

  .footer-grid {
    flex-direction: column;
  }
}
