@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --bg: #080a0f;
  --surface: #10141c;
  --surface-2: #151b26;
  --line: rgba(255, 255, 255, 0.11);
  --text: #f5f6f8;
  --muted: #9ca6b7;
  --orange: #ff6648;
  --mint: #48d5ad;
  --max: 1180px;
  --ivory: var(--bg);
  --paper: var(--surface);
  --ink: var(--text);
  --accent: var(--orange);
  --green: var(--mint);
}

[hidden] { display: none !important; }
[data-theme="light"] {
  color-scheme: light;
  --bg: #f8f7f3;
  --surface: #fffefa;
  --surface-2: #f1f0eb;
  --line: rgba(20,27,52,.1);
  --text: #101426;
  --muted: #646a7b;
  --mint: #1aa978;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 105px; }
body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 5%, rgba(72, 213, 173, 0.08), transparent 25rem),
    var(--bg);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.seo-skip {
  position: fixed;
  z-index: 100;
  top: 1rem;
  left: 1rem;
  padding: .75rem 1rem;
  background: white;
  color: #111;
  transform: translateY(-200%);
}
.seo-skip:focus { transform: none; }

.seo-header {
  position: sticky;
  z-index: 50;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2.5rem;
  width: min(calc(100% - 2rem), 1240px);
  margin: .8rem auto 0;
  padding: .75rem .9rem .75rem 1.15rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(13, 16, 23, .8);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
  backdrop-filter: blur(18px);
}
.seo-brand img { width: 116px; height: auto; }
.seo-header nav {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
}
.seo-header nav a,
.seo-login {
  color: var(--muted);
  font-size: .9rem;
  font-weight: 600;
  transition: color .2s ease;
}
.seo-header nav a:hover,
.seo-login:hover { color: white; }
.seo-header-actions { display: flex; align-items: center; gap: 1rem; }

.seo-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .65rem;
  min-height: 52px;
  padding: 0 1.3rem;
  border-radius: 12px;
  color: white;
  background: linear-gradient(135deg, #ff7358, #ff4e36);
  box-shadow: 0 12px 32px rgba(255, 94, 66, .22);
  font-weight: 700;
  transition: transform .2s ease, box-shadow .2s ease;
}
.seo-button:hover { transform: translateY(-2px); box-shadow: 0 16px 40px rgba(255, 94, 66, .3); }
.seo-button.small { min-height: 42px; padding: 0 1rem; font-size: .86rem; }
.seo-menu-button, .seo-mobile-menu { display: none; }

.nav-shell {
  position: fixed;
  z-index: 50;
  top: 18px;
  left: 50%;
  width: min(1180px, calc(100% - 40px));
  height: 68px;
  padding: 0 12px 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  background: rgba(13,14,19,.76);
  box-shadow: 0 14px 50px rgba(0,0,0,.34);
  backdrop-filter: blur(22px);
  transform: translateX(-50%);
}
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand-logo { width: auto; height: 28px; display: block; }
.brand-logo-light { display: none; }
[data-theme="light"] .brand-logo-dark { display: none; }
[data-theme="light"] .brand-logo-light { display: block; }
.nav-links {
  display: flex;
  gap: clamp(18px, 2vw, 34px);
  margin-left: auto;
  color: #a6a8b0;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
}
.nav-links a { transition: color .2s ease; }
.nav-links a:hover { color: var(--accent); }
.nav-actions { display: flex; align-items: center; gap: 16px; }
.login-link {
  min-height: 40px; padding: 0 14px; display: inline-flex; align-items: center;
  border: 1px solid var(--line); border-radius: 12px; font-size: 14px; font-weight: 650;
  transition: color .2s,border-color .2s,background .2s,transform .2s;
}
.login-link:hover { color: var(--accent); border-color: rgba(239,85,71,.45); background: rgba(239,85,71,.05); transform: translateY(-1px); }
.theme-toggle {
  position: relative;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  overflow: hidden;
  transition: transform .25s, border-color .25s;
}
.theme-toggle:hover { border-color: rgba(239,85,71,.5); transform: rotate(9deg); }
.theme-icon { font-size: 17px; line-height: 1; }
.menu-toggle, .mobile-menu, .menu-backdrop { display: none; }
.button {
  min-height: 52px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 15px;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 14px;
  font-weight: 680;
  transition: transform .25s, box-shadow .25s, background .25s;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 44px; padding: 0 18px; border-radius: 13px; color: #111218; background: #f5f5f1; }
.button-primary { color: white; background: linear-gradient(125deg,#d43f34,var(--accent) 55%,#ff7865); box-shadow: 0 14px 36px rgba(239,85,71,.27),0 0 0 5px rgba(239,85,71,.07); }
[data-theme="light"] .nav-shell { border-color: rgba(20,27,52,.08); background: rgba(255,255,255,.78); box-shadow: 0 14px 50px rgba(28,35,65,.09); }
[data-theme="light"] .nav-links { color: #3f4558; }
[data-theme="light"] .button-small { color: white; background: #101426; }
[data-theme="light"] .login-link { border-color: rgba(20,27,52,.14); background: rgba(255,255,255,.45); }

main { overflow: hidden; }
.seo-glow {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 50%;
  width: 50rem;
  height: 30rem;
  border-radius: 50%;
  background: rgba(255, 91, 64, .09);
  filter: blur(100px);
  transform: translateX(-50%);
}
.seo-hero {
  width: min(calc(100% - 2rem), 940px);
  margin: 0 auto;
  padding: 8rem 0 6.5rem;
  text-align: center;
}
.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: .55rem;
  margin-bottom: 2.7rem;
  color: #747f91;
  font-size: .78rem;
}
.breadcrumbs a:hover { color: var(--text); }
.breadcrumbs span[aria-current="page"] {
  max-width: 40ch;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.seo-eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--orange);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .16em;
}
.seo-hero h1 {
  max-width: 900px;
  margin: 0 auto 1.5rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.8rem, 6.4vw, 5.6rem);
  line-height: .98;
  letter-spacing: -.065em;
}
.seo-hero > p {
  max-width: 750px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.7;
}
.seo-hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .75rem;
  margin-top: 2.3rem;
}
.seo-hero-actions > span { color: #717b8d; font-size: .76rem; }

.seo-content-layout {
  display: grid;
  grid-template-columns: minmax(0, 760px) 300px;
  gap: 4rem;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto 8rem;
}
.seo-article > section {
  position: relative;
  padding: 3rem 0;
  border-top: 1px solid var(--line);
}
.seo-article > section:first-of-type { border-top: 0; padding-top: 0; }
.section-number {
  position: absolute;
  top: 3.4rem;
  left: -4rem;
  color: #394253;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
}
.seo-article > section:first-of-type .section-number { top: .4rem; }
.seo-article h2,
.seo-faq h2,
.seo-final-cta h2 {
  margin: 0 0 1.2rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 1.14;
  letter-spacing: -.04em;
}
.seo-article p {
  margin: 0 0 1rem;
  color: #b7bfcb;
  font-size: 1.05rem;
}
.seo-article ul {
  display: grid;
  gap: .75rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}
.seo-article li {
  display: flex;
  gap: .8rem;
  padding: .9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, .02);
  color: #d5dae2;
}
.seo-article li span { color: var(--mint); }

.article-note,
.article-disclaimer {
  margin: 0 0 3rem;
  padding: 1.4rem;
  border: 1px solid rgba(72, 213, 173, .22);
  border-radius: 14px;
  background: rgba(72, 213, 173, .05);
}
.article-note strong,
.article-disclaimer strong { display: block; margin-bottom: .35rem; color: var(--mint); }
.article-note p,
.article-disclaimer p { margin: 0; font-size: .94rem; }
.article-disclaimer { margin: 3rem 0 0; border-color: var(--line); background: rgba(255,255,255,.02); }
.article-disclaimer strong { color: var(--text); }

.seo-aside { display: flex; flex-direction: column; gap: 1rem; }
.seo-aside > div,
.seo-aside nav {
  position: sticky;
  top: 6.5rem;
  display: flex;
  flex-direction: column;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
}
.seo-aside nav { position: static; gap: .9rem; }
.seo-aside strong { font-family: "Manrope", sans-serif; line-height: 1.35; }
.seo-aside p { color: var(--muted); font-size: .9rem; }
.seo-aside a { color: var(--orange); font-size: .88rem; font-weight: 700; }
.seo-aside nav a { color: var(--muted); font-weight: 500; }
.seo-aside nav a:hover { color: white; }

.seo-faq {
  width: min(calc(100% - 2rem), 900px);
  margin: 0 auto;
  padding: 7rem 0;
}
.seo-faq h2 { margin-bottom: 2rem; }
.seo-faq-list { border-top: 1px solid var(--line); }
.seo-faq details { border-bottom: 1px solid var(--line); }
.seo-faq summary {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  cursor: pointer;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  list-style: none;
}
.seo-faq summary::-webkit-details-marker { display: none; }
.seo-faq summary span { color: var(--orange); font-size: 1.4rem; }
.seo-faq details[open] summary span { transform: rotate(45deg); }
.seo-faq details p { max-width: 760px; margin: 0 0 1.4rem; color: var(--muted); }

.seo-final-cta {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto 6rem;
  padding: 5rem 2rem;
  border: 1px solid rgba(255, 102, 72, .22);
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 120%, rgba(255, 95, 67, .25), transparent 55%),
    var(--surface);
  text-align: center;
}
.seo-final-cta h2 { max-width: 760px; margin-inline: auto; }
.seo-final-cta p { max-width: 620px; margin: 0 auto 2rem; color: var(--muted); }

.guides-hero { padding-bottom: 4rem; }
.guide-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto 8rem;
}
.guide-grid article {
  position: relative;
  min-height: 370px;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface);
}
.guide-grid article > span {
  display: inline-grid;
  width: 2.2rem;
  height: 2.2rem;
  place-items: center;
  border-radius: 50%;
  color: var(--orange);
  background: rgba(255, 102, 72, .1);
  font-size: .75rem;
  font-weight: 800;
}
.guide-grid article > p:first-of-type {
  margin: 2.8rem 0 .8rem;
  color: var(--orange);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .14em;
}
.guide-grid h2 {
  margin: 0 0 1rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.15;
  letter-spacing: -.04em;
}
.guide-grid h2 a::after { content: ""; position: absolute; inset: 0; }
.guide-grid article > p:nth-of-type(2) { color: var(--muted); }
.guide-grid article > a {
  position: absolute;
  z-index: 1;
  bottom: 2rem;
  color: var(--orange);
  font-weight: 700;
}

.seo-footer {
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--line);
}
.seo-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 3rem;
}
.seo-footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; gap: .65rem; }
.seo-footer p, .seo-footer a { color: var(--muted); font-size: .87rem; }
.seo-footer a:hover { color: white; }
.seo-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 4rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  color: #677183;
  font-size: .75rem;
}

.contact-layout {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: start;
  gap: clamp(3rem, 8vw, 8rem);
  width: min(calc(100% - 2rem), var(--max));
  margin: 0 auto;
  padding: 8rem 0;
}
.contact-copy { position: sticky; top: 8rem; }
.contact-copy .breadcrumbs { justify-content: flex-start; margin-bottom: 3rem; }
.contact-copy h1 {
  max-width: 580px;
  margin: .5rem 0 1.5rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: .98;
  letter-spacing: -.065em;
}
.contact-copy > p { max-width: 520px; color: var(--muted); font-size: 1.08rem; }
.contact-details {
  display: grid;
  gap: 1rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}
.contact-details > div { display: flex; flex-direction: column; gap: .2rem; }
.contact-details span { color: #717b8d; font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.contact-details strong, .contact-details a { font-size: .95rem; }
.contact-details a { color: var(--orange); }
.contact-form {
  display: grid;
  gap: 1.25rem;
  padding: clamp(1.4rem, 4vw, 2.5rem);
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: 0 30px 80px rgba(0,0,0,.25);
}
.contact-form-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: .6rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--line);
}
.contact-form-head .seo-eyebrow { margin: 0; }
.contact-form-head p { margin: 0; color: #717b8d; font-size: .72rem; }
.contact-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form label { display: grid; gap: .5rem; }
.contact-form label > span { color: #c9ced7; font-size: .8rem; font-weight: 700; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text);
  background: #0d1118;
  font: inherit;
  font-size: .9rem;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact-form input,
.contact-form select { height: 50px; padding: 0 .9rem; }
.contact-form textarea { min-height: 180px; padding: .9rem; resize: vertical; line-height: 1.6; }
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { border-color: rgba(255,102,72,.7); box-shadow: 0 0 0 3px rgba(255,102,72,.1); }
.contact-form input::placeholder,
.contact-form textarea::placeholder { color: #5f6879; }
.contact-honeypot { position: absolute !important; left: -10000px; width: 1px; height: 1px; overflow: hidden; }
.contact-submit { width: 100%; border: 0; cursor: pointer; font: inherit; }
.contact-submit:disabled { cursor: wait; opacity: .65; transform: none; }
.contact-privacy { margin: -.35rem 0 0; color: #6c7585; text-align: center; font-size: .7rem; }
.contact-status { padding: .9rem 1rem; border-radius: 11px; font-size: .82rem; }
.contact-status.success { color: #8ce7c9; background: rgba(72,213,173,.1); }
.contact-status.error { color: #ffb1a3; background: rgba(255,102,72,.1); }

@media (max-width: 900px) {
  .nav-links, .login-link, .nav-cta { display: none; }
  .nav-shell { width: calc(100% - 24px); top: 10px; height: 62px; padding: 0 10px 0 16px; }
  .menu-toggle { width: 40px; height: 40px; display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 5px; border: 1px solid var(--line); border-radius: 12px; color: var(--ink); background: transparent; cursor: pointer; }
  .menu-toggle span { width: 18px; height: 2px; border-radius: 2px; background: currentColor; }
  .mobile-menu { position: fixed; top: 84px; left: 12px; right: 12px; z-index: 52; padding: 18px; border: 1px solid var(--line); border-radius: 20px; background: color-mix(in srgb,var(--paper) 94%,transparent); box-shadow: 0 28px 80px rgba(0,0,0,.42); backdrop-filter: blur(24px); }
  .mobile-menu.open { display: block; animation: menu-in .22s ease both; }
  .mobile-menu-head { display: flex; align-items: center; justify-content: space-between; padding: 0 2px 12px; color: var(--muted); font-size: 10px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
  .mobile-menu-head button { width: 34px; height: 34px; border: 1px solid var(--line); border-radius: 10px; color: var(--ink); background: transparent; font-size: 22px; cursor: pointer; }
  .mobile-menu > a { display: flex; align-items: center; justify-content: space-between; padding: 15px 4px; border-top: 1px solid var(--line); font-size: 21px; font-weight: 700; letter-spacing: -.02em; }
  .mobile-menu > a span { color: var(--muted); font-size: 9px; letter-spacing: .1em; }
  .mobile-menu-actions { display: grid; gap: 12px; margin-top: 16px; }
  .mobile-login { padding: 11px 14px; border: 1px solid var(--line); border-radius: 12px; color: var(--muted); text-align: center; font-size: 11px; }
  .menu-backdrop { position: fixed; inset: 0; z-index: 49; background: rgba(0,0,0,.52); backdrop-filter: blur(3px); }
  .menu-backdrop.open { display: block; }
  .seo-header { grid-template-columns: auto 1fr auto; }
  .seo-header > nav, .seo-header-actions { display: none; }
  .seo-menu-button {
    grid-column: 3;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 42px;
    height: 42px;
    padding: 0 10px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: var(--surface);
  }
  .seo-menu-button span { width: 100%; height: 2px; background: white; }
  .seo-mobile-menu {
    position: absolute;
    top: calc(100% + .5rem);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    gap: .2rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #10141c;
    box-shadow: 0 25px 60px rgba(0,0,0,.45);
  }
  .seo-mobile-menu.open { display: flex; }
  .seo-mobile-menu > a:not(.seo-button) { padding: .85rem .5rem; border-bottom: 1px solid var(--line); }
  .seo-mobile-menu .seo-button { margin-top: .7rem; }
  .seo-mobile-login { color: var(--muted); text-align: center; font-size: .8rem; }
  .seo-content-layout { grid-template-columns: 1fr; }
  .seo-aside { display: grid; grid-template-columns: 1fr 1fr; }
  .seo-aside > div { position: static; }
  .section-number { position: static; display: block; margin-bottom: .7rem; }
  .seo-footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .seo-footer-grid > div:last-child { display: none; }
  .contact-layout { grid-template-columns: 1fr; }
  .contact-copy { position: static; }
}

@media (max-width: 640px) {
  .brand-logo { height: 25px; }
  .nav-actions { gap: 7px; }
  .theme-toggle { width: 38px; height: 38px; }
  .seo-header { width: calc(100% - 1rem); margin-top: .5rem; }
  .seo-brand img { width: 104px; }
  .seo-hero { padding: 5.5rem 0 4.5rem; }
  .breadcrumbs { justify-content: flex-start; overflow: hidden; margin-bottom: 2rem; text-align: left; }
  .seo-hero { text-align: left; }
  .seo-hero h1 { font-size: clamp(2.5rem, 14vw, 4rem); }
  .seo-hero-actions { align-items: stretch; }
  .seo-hero-actions > span { text-align: center; }
  .seo-content-layout { margin-bottom: 4rem; }
  .seo-article > section { padding: 2.2rem 0; }
  .seo-aside { grid-template-columns: 1fr; }
  .seo-faq { padding: 4.5rem 0; }
  .seo-final-cta { padding: 3.5rem 1.2rem; border-radius: 20px; }
  .guide-grid { grid-template-columns: 1fr; margin-bottom: 5rem; }
  .guide-grid article { min-height: 340px; padding: 1.5rem; }
  .guide-grid article > a { bottom: 1.5rem; }
  .seo-footer-grid { grid-template-columns: 1fr 1fr; }
  .seo-footer-grid > div:first-child { grid-column: 1 / -1; }
  .seo-footer-bottom { flex-direction: column; }
  .contact-layout { padding: 5.5rem 0; }
  .contact-copy .breadcrumbs { margin-bottom: 2rem; }
  .contact-field-row { grid-template-columns: 1fr; }
  .contact-form { border-radius: 18px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}

@keyframes menu-in {
  from { opacity: 0; transform: translateY(-8px) scale(.98); }
  to { opacity: 1; transform: none; }
}

[data-theme="light"] body {
  background:
    radial-gradient(circle at 85% 5%, rgba(72,213,173,.07), transparent 25rem),
    var(--bg);
}
[data-theme="light"] .seo-article p,
[data-theme="light"] .seo-aside p,
[data-theme="light"] .seo-final-cta p,
[data-theme="light"] .guide-grid article > p:nth-of-type(2),
[data-theme="light"] .contact-copy > p { color: #50586a; }
[data-theme="light"] .seo-article li,
[data-theme="light"] .contact-form input,
[data-theme="light"] .contact-form select,
[data-theme="light"] .contact-form textarea { color: #20283a; background: #fff; }
[data-theme="light"] .contact-form label > span { color: #30384b; }
[data-theme="light"] .seo-aside nav a,
[data-theme="light"] .seo-footer p,
[data-theme="light"] .seo-footer a { color: #596174; }
