:root {
  --cream: #fbf7f0;
  --ink: #121212;
  --muted: #4b5563;
  --blue: #2152ff;
  --blue-deep: #1e46d8;
  --line: rgba(0, 0, 0, 0.1);
  --white: #ffffff;
  --yellow: #fde68a;
  --orange: #fdba74;
  --lavender: #ddd6fe;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: "Roboto Condensed", Arial, sans-serif;
  line-height: 1.5;
}

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

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 1.05;
  margin: 0;
}

p {
  margin: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
  background: rgba(251, 247, 240, 0.86);
  border-bottom: 1px solid var(--line);
}

.nav-row {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: block;
  object-fit: cover;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
}

.brand-text {
  font-size: 1.15rem;
  font-weight: 700;
}

.nav-links {
  display: inline-flex;
  gap: 1.1rem;
}

.nav-links a {
  color: rgba(0, 0, 0, 0.72);
  text-decoration: none;
  font-size: 0.96rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 12px;
  padding: 0 1.15rem;
  border: 1px solid transparent;
  text-decoration: none;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  background: var(--blue-deep);
}

.btn-small {
  min-height: 40px;
  border-radius: 10px;
  font-size: 0.94rem;
}

.btn-light {
  background: #fff;
  color: #0f172a;
  border-color: var(--line);
}

.btn-light:hover {
  background: #f3f4f6;
}

.hero {
  position: relative;
  min-height: 86vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg-slider {
  position: absolute;
  inset: 0;
}

.hero-bg-slider img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: heroFade 15s infinite;
}

.hero-bg-slider img:nth-child(1) {
  animation-delay: 0s;
}

.hero-bg-slider img:nth-child(2) {
  animation-delay: 5s;
}

.hero-bg-slider img:nth-child(3) {
  animation-delay: 10s;
}

@keyframes heroFade {
  0% { opacity: 0; }
  8% { opacity: 1; }
  30% { opacity: 1; }
  38% { opacity: 0; }
  100% { opacity: 0; }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 0.8rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.93);
  color: #1f2937;
  border: 1px solid rgba(255, 255, 255, 0.65);
  font-size: 0.84rem;
  font-weight: 700;
}

.eyebrow-dark {
  background: #fff;
  border-color: var(--line);
}

.hero-copy {
  color: #fff;
}

.hero-copy h1 {
  margin-top: 0.9rem;
  font-size: clamp(2.3rem, 6vw, 4.9rem);
}

.hero-copy h1 span {
  font-style: italic;
}

.hero-copy p {
  margin-top: 1rem;
  max-width: 54ch;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.06rem;
}

.hero-copy .eyebrow {
  color: #1f2937;
}

.cta-row {
  margin-top: 1.2rem;
  display: flex;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.hero-collage {
  position: relative;
  min-height: 440px;
}

.photo-card {
  position: absolute;
  width: min(240px, 48%);
  background: #fff;
  border-radius: 14px;
  border: 8px solid #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25);
}

.photo-card img {
  width: 100%;
  height: 190px;
  object-fit: cover;
  border-radius: 7px;
  display: block;
}

.photo-card p {
  margin-top: 0.5rem;
  color: #1f2937;
  font-size: 0.92rem;
  text-align: center;
  font-weight: 700;
}

.card-a {
  top: 0;
  left: 0;
  transform: rotate(5deg);
}

.card-b {
  top: 84px;
  right: 2%;
  transform: rotate(-5deg);
}

.card-c {
  bottom: 0;
  left: 20%;
  transform: rotate(2deg);
}

.section {
  padding: 4.1rem 0;
}

.section-head {
  text-align: center;
}

.section-head h2 {
  margin-top: 0.8rem;
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.steps-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.step-card {
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
  padding: 1rem;
}

.step-card span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: #e0e7ff;
  color: #1e3a8a;
  font-weight: 700;
}

.step-card h3 {
  margin-top: 0.7rem;
  font-size: 1.55rem;
}

.step-card p {
  margin-top: 0.6rem;
  color: var(--muted);
}

.feature-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.2rem;
  align-items: center;
}

.feature-copy h2 {
  margin-top: 0.8rem;
  font-size: clamp(2rem, 3.8vw, 3rem);
}

.feature-copy > p {
  margin-top: 0.7rem;
  color: var(--muted);
  max-width: 58ch;
}

.feature-copy ul {
  margin-top: 0.85rem;
  padding-left: 1rem;
}

.feature-copy li {
  margin: 0.5rem 0;
}

.feature-panel {
  position: relative;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 1rem;
  min-height: 470px;
  overflow: hidden;
}

.feature-panel img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.sticker {
  position: absolute;
  border-radius: 26px;
  opacity: 0.8;
}

.sticker.yellow {
  top: 20px;
  left: 14px;
  width: 130px;
  height: 130px;
  background: var(--yellow);
  transform: rotate(-8deg);
}

.sticker.orange {
  top: 45px;
  right: 15px;
  width: 110px;
  height: 110px;
  background: var(--orange);
  transform: rotate(9deg);
}

.sticker.lavender {
  bottom: 20px;
  left: 40px;
  width: 120px;
  height: 120px;
  background: var(--lavender);
  transform: rotate(6deg);
}

.faq-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.faq-grid article {
  border-radius: 18px;
  border: 1px solid var(--line);
  background: #fff;
  padding: 1rem;
}

.faq-grid h3 {
  font-size: 1.45rem;
}

.faq-grid p {
  margin-top: 0.55rem;
  color: var(--muted);
}

.final-cta {
  background: #0f172a;
  color: #fff;
  padding: 3.2rem 0;
}

.final-wrap {
  text-align: center;
}

.final-wrap h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.final-wrap p {
  margin-top: 0.7rem;
  color: rgba(255, 255, 255, 0.86);
}

.final-wrap .cta-row {
  justify-content: center;
}

.site-footer {
  background: #fff;
  border-top: 1px solid var(--line);
  padding: 1.1rem 0 1.6rem;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-row p {
  color: #6b7280;
}

@media (max-width: 1000px) {
  .hero-inner,
  .feature-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 4rem 0;
  }

  .hero-collage {
    min-height: 340px;
    margin-top: 1rem;
  }

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

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }

  .photo-card {
    width: 48%;
  }

  .photo-card img {
    height: 130px;
  }

  .hero-collage {
    min-height: 290px;
  }

  .card-b {
    top: 55px;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }
}
