:root {
  color: #202433;
  background: #f6f4ef;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    'Segoe UI',
    sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f6f4ef;
}

a {
  color: #b84f36;
}

.seo-header,
.seo-main,
.seo-footer {
  width: min(1120px, calc(100% - 40px));
  margin-inline: auto;
}

.seo-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  border-bottom: 1px solid #ded9cf;
}

.seo-brand,
.seo-brand:visited {
  color: #202433;
  font-weight: 900;
  text-decoration: none;
}
.seo-header nav,
.seo-language {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.88rem;
}
.seo-header nav a,
.seo-language a {
  color: #5e6471;
  text-decoration: none;
}
.seo-header a:hover,
.seo-header a:focus-visible,
.seo-text-link:hover,
.seo-text-link:focus-visible {
  color: #8f3625;
}

.seo-main {
  padding: 64px 0 80px;
}
.seo-hero,
.seo-template-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: center;
  gap: clamp(32px, 7vw, 96px);
  padding: 24px 0 88px;
}

.seo-eyebrow {
  margin: 0 0 12px;
  color: #bf563f;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  color: #262b3a;
  line-height: 1.05;
}
h1 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 5.4rem);
  letter-spacing: -0.055em;
}
h2 {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 3vw, 3rem);
  letter-spacing: -0.04em;
}
h3 {
  margin: 20px 0 10px;
  font-size: 1.25rem;
}
.seo-lede,
.seo-section-lede,
.seo-section > p,
.seo-template-card p {
  color: #5e6471;
  font-size: 1.08rem;
  line-height: 1.65;
}
.seo-lede {
  max-width: 620px;
  margin: 24px 0 28px;
}
.seo-hero-image {
  width: 100%;
  height: auto;
  border: 1px solid #d6d2c9;
  border-radius: 18px;
  box-shadow:
    18px 20px 0 #c9d1cd,
    28px 32px 45px #2d35421c;
}
.seo-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 10px;
  background: #ef815e;
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 8px 18px #ef815e38;
}
.seo-cta:hover,
.seo-cta:focus-visible {
  background: #d96547;
}
.seo-cta:focus-visible,
.seo-header a:focus-visible,
.seo-footer a:focus-visible,
.seo-text-link:focus-visible {
  outline: 2px solid #ef815e;
  outline-offset: 3px;
}

.seo-section {
  padding: 64px 0 0;
}
.seo-template-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 30px;
}
.seo-template-card {
  padding: 18px;
  border: 1px solid #ded9cf;
  border-radius: 16px;
  background: #fffdf8;
}
.seo-template-card img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}
.seo-text-link {
  font-weight: 800;
  text-decoration: none;
}
.seo-split {
  display: grid;
  grid-template-columns: minmax(220px, 0.7fr) minmax(0, 1.3fr);
  gap: 32px;
  border-top: 1px solid #ded9cf;
}
.seo-split p {
  margin-top: 0;
}
.seo-benefits ul,
.seo-related ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding-left: 22px;
  color: #5e6471;
  line-height: 1.6;
}
.seo-faq {
  display: grid;
  gap: 10px;
  max-width: 820px;
}
.seo-faq-item {
  padding: 16px 18px;
  border: 1px solid #ded9cf;
  border-radius: 12px;
  background: #fffdf8;
}
.seo-faq-item summary {
  cursor: pointer;
  font-weight: 800;
}
.seo-faq-item p {
  margin: 12px 0 0;
  color: #5e6471;
  line-height: 1.6;
}
.seo-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
  color: #777d89;
  font-size: 0.9rem;
}
.seo-breadcrumbs a {
  color: #5e6471;
}
.seo-related a {
  color: #b84f36;
}
.seo-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 24px 0 40px;
  border-top: 1px solid #ded9cf;
  color: #777d89;
  font-size: 0.88rem;
}
.seo-footer span {
  margin-right: auto;
}

@media (max-width: 760px) {
  .seo-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }
  .seo-header nav {
    gap: 12px;
  }
  .seo-main {
    padding-top: 32px;
  }
  .seo-hero,
  .seo-template-hero,
  .seo-split {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .seo-template-grid {
    grid-template-columns: 1fr;
  }
  .seo-hero-image {
    order: -1;
    box-shadow: 8px 10px 0 #c9d1cd;
  }
  .seo-footer span {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
