:root {
  --black: #111111;
  --white: #ffffff;
  --gray-900: #1e1e1e;
  --gray-700: #3a3a3a;
  --gray-500: #6c6c6c;
  --gray-200: #d9d9d9;
  --yellow: #f5c400;
  --yellow-soft: #ffe36a;
  --max-width: 1120px;
  --shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

html {
  scroll-behavior: smooth;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Space Grotesk", "Helvetica Neue", Arial, sans-serif;
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.6;
}

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

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

.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: linear-gradient(140deg, #ffffff 10%, #f6f6f6 40%, #ffffff 80%);
}

.orb {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(0);
  opacity: 0.5;
  animation: float 10s ease-in-out infinite;
}

.orb--yellow {
  background: radial-gradient(circle at 30% 30%, var(--yellow-soft), var(--yellow));
  top: -120px;
  right: -120px;
  animation-delay: -3s;
}

.orb--gray {
  background: radial-gradient(circle at 30% 30%, #e5e5e5, #bdbdbd);
  bottom: -160px;
  left: -100px;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(20px) scale(1.03);
  }
}

.site-header {
  max-width: var(--max-width);
  margin: 32px auto 0;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.logo img {
  width: 120px;
  height: auto;
  object-fit: contain;
}

.main-nav {
  display: flex;
  gap: 22px;
  font-weight: 500;
}

.site-header .cta {
  margin-left: auto;
}

.main-nav a {
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: var(--yellow);
  transition: width 0.25s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

.cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-weight: 600;
}

.hero {
  max-width: var(--max-width);
  margin: 56px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 28px;
  align-items: center;
}

.hero__visual {
  display: grid;
  gap: 14px;
  align-items: start;
}

.hero__mascot {
  max-width: 220px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.2));
  justify-self: end;
}

.hero__content h1 {
  font-family: "Playfair Display", "Times New Roman", serif;
  font-size: clamp(2.2rem, 2.8vw, 3.4rem);
  margin-bottom: 12px;
}


.lead {
  font-size: 1.1rem;
  color: var(--gray-700);
  max-width: 520px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  color: var(--gray-500);
  margin-bottom: 12px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 32px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid var(--black);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.btn--primary {
  background: var(--yellow);
  border-color: var(--yellow);
  color: var(--black);
  box-shadow: 0 14px 26px rgba(245, 196, 0, 0.35);
}

.btn--ghost {
  background: transparent;
  color: var(--black);
}

.trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.trust div {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.hero__card {
  background: var(--black);
  color: var(--white);
  padding: 28px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  animation: slideIn 0.8s ease-out both;
  position: relative;
  overflow: hidden;
}

.hero__card ul {
  padding-left: 18px;
}

.badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--black);
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.section__header {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.section__mascot {
  display: flex;
  justify-content: flex-end;
  margin: 0;
}

.section__mascot--left {
  justify-content: flex-start;
}

.section__mascot img {
  max-width: 140px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.18));
}

.mascot {
  position: absolute;
  top: -10px;
  right: -8px;
  width: 120px;
  opacity: 0.12;
  transform: rotate(-6deg);
}

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

.section {
  max-width: var(--max-width);
  margin: 64px auto 0;
  padding: 0 24px;
  position: relative;
}

.section:not(.section--first)::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -24px;
  width: min(70%, 680px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.12), transparent);
  transform: translateX(-50%);
}

.section__title h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
  margin-bottom: 24px;
}

.section__header .section__title h2 {
  margin-bottom: 0;
}

.section--alt {
  background: #f4f4f4;
  padding: 48px 24px;
  border-radius: 32px;
}

.grid.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 22px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.step {
  background: var(--white);
  padding: 18px;
  border-radius: 18px;
  border: 1px solid var(--gray-200);
}

.step span {
  font-weight: 700;
  color: var(--yellow);
  font-size: 1.2rem;
}

.step h3 {
  margin: 8px 0 6px;
}

.step p {
  margin: 0;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.price-card--highlight {
  border-color: var(--yellow);
  box-shadow: 0 20px 50px rgba(245, 196, 0, 0.25);
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.note {
  color: var(--gray-500);
  margin-top: 16px;
}

.section--contact {
  margin-bottom: 80px;
  position: relative;
}

.contact {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact__info .section__title {
  margin-bottom: 16px;
}

.contact__mascot {
  position: absolute;
  left: 24px;
  bottom: 16px;
  width: 160px;
  z-index: 0;
  pointer-events: none;
}

.contact__mascot img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.2));
}

.contact__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
  font-size: 1.1rem;
}

.contact__form {
  background: var(--white);
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--gray-200);
  box-shadow: var(--shadow);
  display: grid;
  gap: 14px;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

label {
  display: grid;
  gap: 6px;
  font-weight: 600;
}

input,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  font-family: inherit;
}

input:focus,
textarea:focus {
  outline: 2px solid var(--yellow);
  border-color: var(--yellow);
}

.form-note {
  font-size: 0.9rem;
  color: var(--gray-500);
}

.form-success {
  font-size: 0.95rem;
  color: #1f7a32;
  font-weight: 600;
}

.site-footer {
  max-width: var(--max-width);
  margin: 0 auto 40px;
  padding: 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  border-top: 1px solid var(--gray-200);
}

.mobile-cta {
  display: none;
  position: sticky;
  bottom: 0;
  z-index: 20;
  padding: 12px 16px 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), #ffffff 55%);
}

.mobile-cta__btn {
  display: block;
  text-align: center;
  background: var(--black);
  color: var(--white);
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.18);
}

.site-footer img {
  width: 112px;
  height: auto;
  object-fit: contain;
  margin-bottom: 2px;
}

.footer-links,
.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-contact__title {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--black);
  font-size: 0.9rem;
  font-weight: 700;
}

@media (max-width: 900px) {
  .main-nav {
    display: none;
  }
  .site-header {
    flex-wrap: wrap;
  }
  .section__header {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .section__mascot {
    justify-content: center;
  }
  .hero__visual {
    justify-items: center;
    width: 100%;
  }
  .contact__mascot {
    display: none;
  }
  .hero__card,
  .hero__note {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .cta {
    width: 100%;
    text-align: center;
  }
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .site-header {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .logo {
    width: 100%;
    justify-content: center;
  }
  .logo span {
    text-align: center;
  }
  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }
  .site-footer img {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-contact {
    text-align: center;
  }
  .footer-contact__title {
    justify-content: center;
  }
  .footer-links,
  .footer-contact {
    justify-items: center;
  }
  .mobile-cta {
    display: block;
  }
}
.trust__mascot {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
}

.trust__mascot img {
  max-width: 120px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.18));
}
.hero__note {
  background: var(--white);
  border: 1px solid var(--gray-200);
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 10px;
}

.hero__note strong {
  font-weight: 700;
}

.note-item {
  display: grid;
  gap: 4px;
  position: relative;
  padding-left: 14px;
}

.note-item span {
  color: var(--gray-700);
}

.note-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--yellow);
}
