:root {
  --red:#d32f2f;
  --red-dark:#b91c1c;
  --red-soft:#fef2f2;
  --ink:#111827;
  --muted:#667085;
  --line:#e5e7eb;
  --paper:#f8f9fa;
  --white:#fff;
  --shadow:0 18px 45px rgba(17,24,39,.08);
  --radius:18px;
  --container:1180px;
}

/* Forum hero — no-gradient technical pattern */
.forum-page-hero {
  position: relative;
  isolation: isolate;
  background-color: #f8f9fa;
  overflow: hidden;
}
.forum-page-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 54px;
  right: 9%;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(211,47,47,.42);
  box-shadow: 28px 0 rgba(17,24,39,.13),56px 0 rgba(17,24,39,.13),84px 0 rgba(211,47,47,.24),112px 0 rgba(17,24,39,.13),140px 0 rgba(17,24,39,.13),0 28px rgba(17,24,39,.13),28px 28px rgba(17,24,39,.13),56px 28px rgba(211,47,47,.24),84px 28px rgba(17,24,39,.13),112px 28px rgba(17,24,39,.13),140px 28px rgba(211,47,47,.24),0 56px rgba(17,24,39,.13),28px 56px rgba(211,47,47,.24),56px 56px rgba(17,24,39,.13),84px 56px rgba(17,24,39,.13),112px 56px rgba(211,47,47,.24),140px 56px rgba(17,24,39,.13),0 84px rgba(211,47,47,.24),28px 84px rgba(17,24,39,.13),56px 84px rgba(17,24,39,.13),84px 84px rgba(211,47,47,.24),112px 84px rgba(17,24,39,.13),140px 84px rgba(17,24,39,.13),0 112px rgba(17,24,39,.13),28px 112px rgba(17,24,39,.13),56px 112px rgba(211,47,47,.24),84px 112px rgba(17,24,39,.13),112px 112px rgba(17,24,39,.13),140px 112px rgba(211,47,47,.24);
}
.forum-page-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 38px;
  right: calc(9% - 22px);
  width: 195px;
  height: 165px;
  border-top: 1px solid rgba(211,47,47,.18);
  border-right: 1px solid rgba(211,47,47,.18);
  pointer-events: none;
}
.forum-page-hero > .container {
  position: relative;
  z-index: 1;
}
.forum-left-pattern {
  position: absolute;
  z-index: -1;
  top: 42px;
  left: 3.5%;
  width: 150px;
  height: 155px;
  border-left: 1px solid rgba(211,47,47,.2);
  border-bottom: 1px solid rgba(211,47,47,.2);
}
.forum-left-pattern::before {
  content: "";
  position: absolute;
  top: 16px;
  left: 18px;
  width: 5px;
  height: 5px;
  border: 1px solid rgba(211,47,47,.3);
  box-shadow: 25px 0 rgba(17,24,39,.1),50px 0 rgba(17,24,39,.1),75px 0 rgba(211,47,47,.18),100px 0 rgba(17,24,39,.1),0 25px rgba(17,24,39,.1),25px 25px rgba(211,47,47,.18),50px 25px rgba(17,24,39,.1),75px 25px rgba(17,24,39,.1),100px 25px rgba(211,47,47,.18),0 50px rgba(211,47,47,.18),25px 50px rgba(17,24,39,.1),50px 50px rgba(17,24,39,.1),75px 50px rgba(211,47,47,.18),100px 50px rgba(17,24,39,.1),0 75px rgba(17,24,39,.1),25px 75px rgba(17,24,39,.1),50px 75px rgba(211,47,47,.18),75px 75px rgba(17,24,39,.1),100px 75px rgba(17,24,39,.1),0 100px rgba(17,24,39,.1),25px 100px rgba(211,47,47,.18),50px 100px rgba(17,24,39,.1),75px 100px rgba(17,24,39,.1),100px 100px rgba(211,47,47,.18);
}
@media(max-width:760px) {
  .forum-page-hero::before,
  .forum-page-hero::after {
    right: -80px;
    opacity: .6;
  }
  .forum-left-pattern {
    left: -95px;
    opacity: .6;
  }
}

/* Price-led campaign offers */
.campaign-offers {
  padding: 100px 0 108px;
  background: #f6f7f8;
}
.campaign-offers > .container {
  width: min(calc(100% - 64px), 1320px);
}
.campaign-offers-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 42px;
}
.campaign-offers-head h2 {
  max-width: 730px;
  margin-top: 12px;
}
.campaign-offers-head > p {
  max-width: 460px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.campaign-offer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.campaign-offer {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 34px;
  padding: 30px;
  border: 1px solid #dce0e5;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(17,24,39,.045);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.campaign-offer:hover {
  transform: translateY(-5px);
  border-color: #edb4b4;
  box-shadow: 0 20px 45px rgba(17,24,39,.1);
}
.campaign-offer-featured {
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  padding: 38px 40px;
  border-color: #efb5b5;
  background: linear-gradient(135deg, #fff 0%, #fff7f6 100%);
}
.campaign-offer-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.campaign-offer-tag {
  align-self: flex-start;
  margin-bottom: 15px;
  padding: 6px 9px;
  border-radius: 6px;
  color: var(--red);
  background: #fee2e2;
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.campaign-offer h3 {
  font-size: 27px;
}
.campaign-offer-copy > p {
  max-width: 560px;
  margin: 12px 0 20px;
  color: var(--muted);
  font-size: 13px;
}
.campaign-offer-copy ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.campaign-offer-copy li {
  color: #596273;
  font-size: 10px;
}
.campaign-offer-copy li::before {
  content: "✓";
  margin-right: 6px;
  color: var(--red);
  font-weight: 900;
}
.campaign-price-area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 30px;
  border-left: 1px solid #e1e4e8;
}
.campaign-validity {
  align-self: flex-start;
  margin-bottom: 20px;
  color: #7b8490;
  font-size: 9px;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.old-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 6px;
}
.old-price small,
.campaign-price small {
  color: #8a919c;
  font-size: 9px;
}
.old-price del {
  color: #9299a3;
  font-size: 17px;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
}
.campaign-price {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 15px;
  padding: 10px 0 15px;
  border-bottom: 1px solid #e1e4e8;
}
.campaign-price strong {
  color: var(--ink);
  font-size: 42px;
  line-height: 1;
  letter-spacing: -.055em;
}
.campaign-price sup {
  position: relative;
  top: -10px;
  margin-right: 2px;
  color: var(--red);
  font-size: 15px;
}
.campaign-saving {
  margin: 12px 0 18px;
  color: #166534;
  font-size: 10px;
  font-weight: 800;
}
.campaign-price-area .btn {
  width: 100%;
}
.campaign-price-note {
  margin: 16px 0 0;
  color: #8a919c;
  font-size: 10px;
  text-align: center;
}
@media(max-width:950px) {
  .campaign-offer-grid {
    grid-template-columns: 1fr;
  }
  .campaign-offer,
  .campaign-offer-featured {
    grid-column: auto;
  }
}
@media(max-width:650px) {
  .campaign-offers {
    padding: 74px 0 80px;
  }
  .campaign-offers > .container {
    width: min(calc(100% - 28px), 1320px);
  }
  .campaign-offers-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .campaign-offer,
  .campaign-offer-featured {
    grid-template-columns: 1fr;
    padding: 26px 22px;
  }
  .campaign-price-area {
    padding: 24px 0 0;
    border-top: 1px solid #e1e4e8;
    border-left: 0;
  }
}

/* Campaign page hero pattern */
.campaign-page-hero {
  position: relative;
  isolation: isolate;
  background-color: #f8f9fa;
  background-image: radial-gradient(circle at 84% 24%, rgba(211,47,47,.075), transparent 24%), repeating-linear-gradient(135deg, rgba(17,24,39,.022) 0, rgba(17,24,39,.022) 1px, transparent 1px, transparent 18px);
  overflow: hidden;
}
.campaign-page-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  right: 7%;
  width: 310px;
  height: 145px;
  border: 1px dashed rgba(211,47,47,.22);
  border-radius: 22px;
  transform: translateY(-50%) rotate(-7deg);
}
.campaign-page-hero::after {
  content: "%";
  position: absolute;
  z-index: -1;
  top: 50%;
  right: calc(7% + 105px);
  color: rgba(211,47,47,.12);
  font-size: 88px;
  font-weight: 850;
  line-height: 1;
  transform: translateY(-50%) rotate(-7deg);
}
.campaign-page-hero > .container {
  position: relative;
  z-index: 1;
}
@media(max-width:900px) {
  .campaign-page-hero::before,
  .campaign-page-hero::after {
    right: -100px;
    opacity: .65;
  }
}
@media(max-width:600px) {
  .campaign-page-hero::before,
  .campaign-page-hero::after {
    display: none;
  }
}

/* Testimonial carousel */
.testimonial-slider {
  position: relative;
}
.testimonial-viewport {
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

/* Modern structured footer */
.site-footer.footer-modern {
  position: relative;
  padding: 82px 0 26px;
  border-top: 0;
  color: #fff;
  background: #11151b;
  overflow: hidden;
}
.site-footer.footer-modern::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0 18%, #2b3038 18% 100%);
}
.footer-modern > .container {
  width: min(calc(100% - 64px), 1380px);
}
.footer-modern-top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 440px;
  align-items: end;
  gap: clamp(70px, 10vw, 160px);
  padding-bottom: 68px;
}
.footer-modern .brand-copy strong {
  color: #fff;
}
.footer-modern .brand-copy span {
  color: #737c88;
}
.footer-modern-brand h2 {
  margin-top: 38px;
  color: #fff;
  font-size: clamp(38px, 4.4vw, 60px);
}
.footer-modern-brand > p {
  max-width: 580px;
  margin: 20px 0 0;
  color: #8d96a2;
  font-size: 14px;
}
.footer-modern-contact {
  border-top: 1px solid #303640;
}
.footer-open {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px 4px;
  border-bottom: 1px solid #303640;
}
.footer-open span,
.footer-open strong {
  display: block;
}
.footer-open strong {
  margin-bottom: 2px;
  color: #dfe4ea;
  font-size: 18px;
}
.footer-open span {
  color: #737c88;
  font-size: 14px;
}
.footer-contact-row {
  display: grid !important;
  grid-template-columns: 105px 1fr 20px;
  align-items: center;
  gap: 14px;
  margin: 0 !important;
  padding: 17px 4px;
  border-bottom: 1px solid #303640;
  transition: padding .2s, color .2s;
}
.footer-contact-row:hover {
  padding-left: 10px;
  color: #fff !important;
}
.footer-contact-row small {
  color: #69727e;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.footer-contact-row strong {
  color: #dfe4ea;
  font-size: 12px;
}
.footer-contact-row > span {
  color: var(--red);
  font-size: 16px;
}
.footer-modern-nav {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 55px;
  padding: 48px 0 52px;
  border-top: 1px solid #303640;
  border-bottom: 1px solid #303640;
}
.footer-modern-nav h4,
.footer-office > span {
  display: block;
  margin: 0 0 17px;
  color: #6f7884;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
}
.footer-modern-nav a {
  display: block;
  width: fit-content;
  margin: 10px 0;
  color: #a7afb9;
  font-size: 12px;
  transition: color .2s, transform .2s;
}
.footer-modern-nav nav a:hover {
  color: #fff;
  transform: translateX(3px);
}
.footer-office {
  padding-right: 40px;
  border-right: 1px solid #303640;
}
.footer-office p {
  margin: 0 0 18px;
  color: #d7dce2;
  font-size: 13px;
  line-height: 1.7;
}
.footer-office a {
  color: #ef6a6a;
  font-weight: 750;
}
.footer-modern-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding-top: 24px;
  color: #5f6874;
  font-size: 9px;
}
.footer-modern-bottom > span:last-child {
  text-align: right;
}
.footer-modern-bottom div {
  display: flex;
  gap: 18px;
}
.footer-modern-bottom a {
  color: #7d8692;
}
.footer-modern-bottom a:hover {
  color: #fff;
}
@media(max-width:900px) {
  .footer-modern-top {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 50px;
  }
  .footer-modern-contact {
    width: 100%;
    max-width: 560px;
  }
  .footer-modern-nav {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-office {
    border-right: 0;
  }
  .footer-modern-bottom {
    grid-template-columns: 1fr;
  }
  .footer-modern-bottom > span:last-child {
    text-align: left;
  }
}
@media(max-width:560px) {
  .footer-modern {
    padding-top: 62px;
  }
  .footer-modern > .container {
    width: min(calc(100% - 28px), 1380px);
  }
  .footer-modern-nav {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-office {
    padding-right: 0;
  }
  .footer-contact-row {
    grid-template-columns: 90px 1fr 18px;
  }
}

/* Stronger CTA background pattern */
.cta-stage {
  background-color: #f6f7f8;
  background-image: radial-gradient(circle, rgba(17,24,39,.11) 1px, transparent 1.2px);
  background-size: 18px 18px;
}
.cta-stage::before {
  background: linear-gradient(90deg, transparent 0%, rgba(246,247,248,.45) 18%, rgba(246,247,248,.96) 36%, rgba(246,247,248,.96) 64%, rgba(246,247,248,.45) 82%, transparent 100%);
}
.cta-stage-pattern {
  width: 330px;
  height: 190px;
  border: 0;
  border-radius: 0;
  background-image: repeating-linear-gradient(135deg, rgba(211,47,47,.25) 0, rgba(211,47,47,.25) 1px, transparent 1px, transparent 13px);
  opacity: .9;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 25%, #000 75%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 25%, #000 75%, transparent);
}
.cta-stage-pattern::before {
  inset: 44px 82px;
  border: 1px solid rgba(211,47,47,.42);
  border-radius: 0;
  transform: rotate(45deg);
}
.cta-stage-pattern::after {
  inset: 73px 111px;
  border: 0;
  border-radius: 3px;
  background: var(--red);
  transform: rotate(45deg);
}
.cta-stage-pattern-left {
  left: 28px;
}
.cta-stage-pattern-right {
  right: 28px;
  transform: translateY(-50%) rotate(180deg);
}
.cta-stage > .container:not(.cta-stage-layout) {
  width: min(calc(100% - 40px), var(--container));
}
@media(max-width:1650px) {
  .cta-stage-pattern-left {
    left: -110px;
  }
  .cta-stage-pattern-right {
    right: -110px;
  }
}
@media(max-width:1050px) {
  .cta-stage-pattern {
    opacity: .45;
  }
}
@media(max-width:700px) {
  .cta-stage-pattern {
    display: none;
  }
}

/* Wide-screen CTA side panels */
.cta-stage > .cta-stage-layout {
  width: min(calc(100% - 72px), 2100px);
  display: grid;
  grid-template-columns: 260px minmax(620px, 1fr) 260px;
  align-items: stretch;
  gap: 18px;
}
.cta-stage-layout .cta-band {
  min-width: 0;
}
.cta-side {
  position: relative;
  display: flex;
  min-height: 170px;
  border: 1px solid #e0e2e6;
  border-radius: 18px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 14px 34px rgba(17,24,39,.06);
  backdrop-filter: blur(8px);
  overflow: hidden;
}
.cta-side-left {
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 24px 22px;
}
.cta-side-left::before {
  content: "";
  position: absolute;
  top: -45px;
  left: -35px;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: #fee2e2;
}
.cta-side-number {
  position: relative;
  z-index: 1;
  color: var(--red);
  font-size: 42px;
  font-weight: 850;
  line-height: 1;
  letter-spacing: -.06em;
}
.cta-side-left div {
  position: relative;
  z-index: 1;
}
.cta-side-left strong,
.cta-side-left small {
  display: block;
}
.cta-side-left strong {
  font-size: 12px;
}
.cta-side-left small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.4;
}
.cta-side-right {
  flex-direction: column;
  padding: 18px 20px;
}
.cta-side-label {
  margin-bottom: 7px;
  color: #8a919c;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.cta-side-right a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 12px;
  border-top: 1px solid var(--line);
  font-size: 11px;
}
.cta-side-right a span {
  color: var(--muted);
  font-size: 9px;
}
.cta-side-right a:hover strong {
  color: var(--red);
}
@media(max-width:1450px) {
  .cta-stage > .cta-stage-layout {
    width: min(calc(100% - 40px), var(--container));
    grid-template-columns: 1fr;
  }
  .cta-side {
    display: none;
  }
}
@media(max-width:650px) {
  .cta-stage > .cta-stage-layout {
    width: min(calc(100% - 28px), var(--container));
  }
}

/* Original CTA with quiet edge patterns */
.cta-stage {
  position: relative;
  padding: 82px 0;
  background-color: #f8f9fa;
  background-image: radial-gradient(#d7d9dd .7px, transparent .7px);
  background-size: 16px 16px;
  overflow: hidden;
}
.cta-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(248,249,250,.92) 27%, rgba(248,249,250,.92) 73%, transparent);
  pointer-events: none;
}
.cta-stage > .container {
  position: relative;
  z-index: 2;
}
.cta-stage .cta-band {
  min-height: 170px;
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: 0 22px 55px rgba(17,24,39,.15);
}
.cta-stage-pattern {
  position: absolute;
  top: 50%;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(211,47,47,.24);
  border-radius: 50%;
  transform: translateY(-50%);
}
.cta-stage-pattern::before,
.cta-stage-pattern::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(211,47,47,.13);
  border-radius: 50%;
}
.cta-stage-pattern::before {
  inset: 22px;
}
.cta-stage-pattern::after {
  inset: 48px;
}
.cta-stage-pattern-left {
  left: -105px;
}
.cta-stage-pattern-right {
  right: -105px;
}
.cta-stage-pattern-right::after {
  background: rgba(211,47,47,.045);
}
@media(max-width:900px) {
  .cta-stage-pattern {
    width: 140px;
    height: 140px;
  }
  .cta-stage-pattern-left {
    left: -90px;
  }
  .cta-stage-pattern-right {
    right: -90px;
  }
}
@media(max-width:650px) {
  .cta-stage {
    padding: 58px 0;
  }
  .cta-stage-pattern {
    opacity: .55;
  }
  .cta-stage .cta-band {
    min-height: 0;
  }
}

/* Full-width pre-footer CTA */
.prefooter-cta {
  position: relative;
  isolation: isolate;
  padding: 92px 0 0;
  color: #fff;
  background: #14171c;
  overflow: hidden;
}
.prefooter-cta::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -180px;
  right: -100px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(211,47,47,.28);
  border-radius: 50%;
  box-shadow: 0 0 0 75px rgba(211,47,47,.035), 0 0 0 150px rgba(211,47,47,.02);
}
.prefooter-word {
  position: absolute;
  z-index: -1;
  bottom: 70px;
  left: -18px;
  color: rgba(255,255,255,.025);
  font-size: clamp(130px, 20vw, 350px);
  font-weight: 900;
  line-height: .75;
  letter-spacing: -.08em;
  white-space: nowrap;
  pointer-events: none;
}
.prefooter-main {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(390px, .85fr);
  align-items: end;
  gap: clamp(60px, 9vw, 150px);
  padding-bottom: 72px;
}
.prefooter-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: #a7f3d0;
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.prefooter-copy h2 {
  max-width: 740px;
  font-size: clamp(46px, 5.6vw, 78px);
  line-height: .98;
}
.prefooter-copy h2 span {
  color: #f05252;
}
.prefooter-copy > p {
  max-width: 570px;
  margin: 25px 0 0;
  color: #aeb6c2;
  font-size: 16px;
}
.prefooter-actions {
  display: grid;
  gap: 10px;
}
.prefooter-primary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 94px;
  padding: 20px 23px;
  border-radius: 14px;
  color: #fff;
  background: var(--red);
  box-shadow: 0 18px 40px rgba(211,47,47,.22);
  transition: transform .22s, background .22s;
}
.prefooter-primary:hover {
  transform: translateY(-3px);
  background: var(--red-dark);
}
.prefooter-primary span,
.prefooter-primary small,
.prefooter-primary strong {
  display: block;
}
.prefooter-primary small {
  margin-bottom: 5px;
  color: #fecaca;
  font-size: 10px;
}
.prefooter-primary strong {
  font-size: 19px;
}
.prefooter-primary i {
  font-size: 27px;
  font-style: normal;
}
.prefooter-contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.prefooter-contact-grid a {
  padding: 16px 17px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 11px;
  background: rgba(255,255,255,.045);
  transition: border-color .2s, background .2s;
}
.prefooter-contact-grid a:hover {
  border-color: rgba(240,82,82,.7);
  background: rgba(255,255,255,.075);
}
.prefooter-contact-grid small,
.prefooter-contact-grid strong {
  display: block;
}
.prefooter-contact-grid small {
  margin-bottom: 4px;
  color: #7f8793;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.prefooter-contact-grid strong {
  color: #fff;
  font-size: 12px;
}
.prefooter-trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255,255,255,.11);
}
.prefooter-trust > div {
  display: flex;
  align-items: center;
  gap: 15px;
  min-height: 96px;
  padding: 0 24px;
  border-left: 1px solid rgba(255,255,255,.11);
}
.prefooter-trust > div:first-child {
  border-left: 0;
  padding-left: 0;
}
.prefooter-trust span {
  color: #ef6666;
  font-size: 10px;
  font-weight: 850;
}
.prefooter-trust p {
  margin: 0;
  color: #747d89;
  font-size: 10px;
  line-height: 1.45;
}
.prefooter-trust strong {
  display: block;
  color: #dfe3e8;
  font-size: 12px;
}
@media(max-width:900px) {
  .prefooter-main {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 45px;
  }
  .prefooter-actions {
    max-width: 560px;
  }
  .prefooter-trust {
    grid-template-columns: 1fr 1fr;
  }
  .prefooter-trust > div:nth-child(3) {
    border-left: 0;
  }
}
@media(max-width:600px) {
  .prefooter-cta {
    padding-top: 68px;
  }
  .prefooter-main {
    padding-bottom: 52px;
  }
  .prefooter-contact-grid,
  .prefooter-trust {
    grid-template-columns: 1fr;
  }
  .prefooter-trust > div {
    min-height: 78px;
    padding: 0;
    border-top: 1px solid rgba(255,255,255,.09);
    border-left: 0;
  }
  .prefooter-trust > div:first-child {
    border-top: 0;
  }
}
.testimonial-viewport.is-dragging {
  cursor: grabbing;
}
.testimonial-track {
  display: flex;
  gap: 18px;
  transition: transform .55s cubic-bezier(.22,.75,.25,1);
  will-change: transform;
}
.testimonial-slide {
  position: relative;
  flex: 0 0 calc((100% - 18px) / 2);
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px 36px 30px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #f9fafb;
  overflow: hidden;
}
.testimonial-slide::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -65px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(211,47,47,.12);
  border-radius: 50%;
}
.quote-mark {
  position: absolute;
  top: 17px;
  right: 28px;
  color: #f1c4c4;
  font-family: Georgia, serif;
  font-size: 78px;
  line-height: 1;
}
.testimonial-slide > p {
  position: relative;
  z-index: 1;
  max-width: 500px;
  margin: 32px 0 44px;
  color: #252b35;
  font-size: 19px;
  line-height: 1.55;
  letter-spacing: -.015em;
}
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 22px;
}
.testimonial-progress {
  display: flex;
  gap: 7px;
}
.testimonial-dot {
  width: 26px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 3px;
  background: #d5d8dd;
  cursor: pointer;
  transition: width .25s, background .25s;
}
.testimonial-dot.active {
  width: 46px;
  background: var(--red);
}
.testimonial-arrows {
  display: flex;
  gap: 8px;
}
.testimonial-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
  transition: .2s;
}
.testimonial-arrow:hover:not(:disabled) {
  border-color: var(--red);
  color: #fff;
  background: var(--red);
}
.testimonial-arrow:disabled {
  opacity: .35;
  cursor: not-allowed;
}
@media(max-width:720px) {
  .testimonial-slide {
    flex-basis: 100%;
    min-height: 310px;
    padding: 28px 25px;
  }
  .testimonial-slide > p {
    font-size: 17px;
  }
}

/* Editorial price catalog */
.price-catalog {
  padding: 110px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #f5f5f3;
}
.price-catalog > .container {
  width: min(calc(100% - 64px), 1380px);
}
.price-catalog-layout {
  display: grid;
  grid-template-columns: 350px minmax(0, 1fr);
  gap: clamp(55px, 7vw, 110px);
  align-items: start;
}
.price-catalog-intro {
  position: sticky;
  top: 110px;
}
.price-catalog-intro h2 {
  margin: 15px 0 22px;
  font-size: clamp(38px, 4vw, 54px);
}
.price-catalog-intro > p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.catalog-assurance {
  margin-top: 34px;
  padding: 17px 0;
  border-top: 1px solid #d8dadd;
  border-bottom: 1px solid #d8dadd;
}
.catalog-assurance span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #166534;
  font-size: 16px;
  font-weight: 800;
}
.catalog-assurance small {
  display: block;
  margin: 5px 0 0 18px;
  color: #8b919b;
  font-size: 15px;
}
.catalog-business-link {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 16px;
  padding: 17px 18px;
  border: 1px solid #d8dadd;
  border-radius: 12px;
  background: #fff;
  transition: border-color .2s, transform .2s;
}
.catalog-business-link:hover {
  transform: translateY(-2px);
  border-color: var(--red);
}
.catalog-business-link span {
  color: var(--muted);
  font-size: 10px;
}
.catalog-business-link strong {
  font-size: 13px;
}
.price-list {
  border-top: 1px solid #cfd2d7;
}
.price-row {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(210px, 1.25fr) minmax(170px, .9fr) minmax(150px, .65fr) 48px;
  align-items: center;
  gap: 22px;
  min-height: 192px;
  padding: 28px 18px;
  border-bottom: 1px solid #cfd2d7;
  transition: background-color .22s, padding .22s;
}
.price-row:hover {
  padding-right: 12px;
  padding-left: 24px;
  background: rgba(255,255,255,.72);
}
.price-row-featured {
  margin-inline: -18px;
  padding-inline: 36px;
  border: 1px solid #efb7b7;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(17,24,39,.06);
}
.price-row-featured:hover {
  padding-right: 30px;
  padding-left: 42px;
  background: #fff;
}
.price-row-number {
  align-self: start;
  padding-top: 3px;
  color: #9ba1aa;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
}
.price-row-featured .price-row-number {
  color: var(--red);
}
.price-row-type {
  display: block;
  margin-bottom: 7px;
  color: var(--red);
  font-size: 9px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.price-row-main h3 {
  font-size: 23px;
  letter-spacing: -.025em;
}
.price-row-main p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 12px;
}
.price-row-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.price-row-includes li {
  padding: 5px 8px;
  border: 1px solid #dde0e4;
  border-radius: 6px;
  color: #606773;
  background: rgba(255,255,255,.62);
  font-size: 9px;
  font-weight: 700;
}
.price-row-value {
  text-align: right;
}
.price-row-value small,
.price-row-value strong {
  display: block;
}
.price-row-value small {
  margin-bottom: 7px;
  color: #8b919b;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.price-row-value strong {
  color: var(--ink);
  font-size: 35px;
  line-height: 1;
  letter-spacing: -.045em;
}
.price-row-value sup {
  position: relative;
  top: -8px;
  margin-right: 2px;
  color: var(--red);
  font-size: 14px;
}
.price-row-action {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid #d5d8dd;
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  font-size: 19px;
  transition: .22s;
}
.price-row:hover .price-row-action,
.price-row-action:hover {
  border-color: var(--red);
  color: #fff;
  background: var(--red);
}
.price-list-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0 0;
  color: var(--muted);
  font-size: 11px;
}
.price-list-footer a {
  color: var(--ink);
  font-weight: 800;
}
@media(max-width:1050px) {
  .price-catalog-layout {
    grid-template-columns: 290px minmax(0, 1fr);
    gap: 40px;
  }
  .price-row {
    grid-template-columns: 32px 1fr 150px 42px;
  }
  .price-row-includes {
    display: none;
  }
}
@media(max-width:780px) {
  .price-catalog {
    padding: 76px 0;
  }
  .price-catalog > .container {
    width: min(calc(100% - 28px), 1380px);
  }
  .price-catalog-layout {
    grid-template-columns: 1fr;
  }
  .price-catalog-intro {
    position: static;
  }
}
@media(max-width:540px) {
  .price-row,
  .price-row-featured {
    grid-template-columns: 28px 1fr 42px;
    gap: 13px;
    min-height: 165px;
    margin-inline: 0;
    padding: 23px 5px;
    border-radius: 0;
  }
  .price-row-featured {
    padding-inline: 13px;
    border-radius: 12px;
  }
  .price-row-value {
    grid-column: 2;
    text-align: left;
  }
  .price-row-action {
    grid-column: 3;
    grid-row: 1 / span 2;
  }
  .price-row:hover,
  .price-row-featured:hover {
    padding-right: 5px;
    padding-left: 5px;
  }
  .price-row-featured:hover {
    padding-inline: 13px;
  }
  .price-list-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

* {
  box-sizing:border-box;
}
.footer-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}
.footer-social-links a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border: 1px solid #dfe3e7;
  border-radius: 8px;
  color: #596473;
  background: #fff;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition: border-color .2s ease, color .2s ease, transform .2s ease;
}
.footer-social-links a:hover {
  border-color: rgba(211,47,47,.35);
  color: #c62828;
  transform: translateY(-1px);
}
html {
  scroll-behavior:smooth;
}
body {
  margin:0;
  background:var(--paper);
  color:var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height:1.6;
}
body,
button,
input,
textarea,
select {
  font-family: Arial, Helvetica, sans-serif;
}
a {
  color:inherit;
  text-decoration:none;
}
button,input,textarea,select {
  font:inherit;
}
img {
  max-width:100%;
}
.container {
  width:min(calc(100% - 40px),var(--container));
  margin:auto;
}
.site-header {
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(248,249,250,.9);
  border-bottom:1px solid rgba(229,231,235,.85);
  backdrop-filter:blur(16px);
}
.nav-wrap {
  height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.brand {
  display:flex;
  align-items:center;
  gap:12px;
}
.brand-mark {
    /* width: 48px; */
    /* height: 48px; */
    border-radius: 12px;
    /* background: var(--red); */
    display: grid;
    place-items: center;
    overflow: hidden;
    margin-left: 20px;
}
.brand-mark img {
    width: 117px;
    /* height: 100%; */
    /* object-fit: cover; */
}
.brand-copy {
  line-height:1.1;
}
.brand-copy strong {
  display:block;
  font-size:25px;
  letter-spacing:-.02em;
}
.brand-copy span {
  font-size:11px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.08em;
}
.nav-links {
  display:flex;
  align-items:center;
  gap:5px;
}
.nav-links a {
      position: relative;
    padding: 11px 13px;
    color: #4b5563;
    font-size: 18px;
    font-weight: 650;
    border-radius: 10px;
    transition: .2s;
}
.nav-links a:hover,.nav-links a.active {
  color:var(--red);
  background:#fff;
}
.nav-links a.active:after {
  content:"";
  position:absolute;
  left:13px;
  right:13px;
  bottom:6px;
  height:2px;
  background:var(--red);
  border-radius:2px;
}
.nav-actions {
  display:flex;
  align-items:center;
  gap:10px;
  margin-right: 20px;
}
.btn {
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  min-height:46px;
  padding:0 19px;
  border:1px solid transparent;
  border-radius:11px;
  font-weight:750;
  font-size:14px;
  cursor:pointer;
  transition:transform .2s,box-shadow .2s,background .2s,color .2s;
}
.btn:hover {
  transform:translateY(-2px);
}
.btn-primary {
  background:var(--red);
  color:#fff;
  box-shadow:0 9px 20px rgba(211,47,47,.2);
}
.btn-primary:hover {
  background:var(--red-dark);
  box-shadow:0 12px 24px rgba(211,47,47,.28);
}
.btn-secondary {
  background:#fff;
  border-color:var(--line);
}
.btn-secondary:hover {
  border-color:#f0b6b6;
  color:var(--red);
}
.menu-toggle {
  display:none;
  width:44px;
  height:44px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:10px;
}
.eyebrow {
  display:inline-flex;
  align-items:center;
  gap:9px;
  color:var(--red);
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.1em;
}
.eyebrow:before {
  content:"";
  width:22px;
  height:2px;
  background:var(--red);
}
h1,h2,h3 {
  margin:0;
  line-height:1.12;
  letter-spacing:-.035em;
}
h1 {
  font-size:clamp(42px,6vw,72px);
  max-width:780px;
}
h2 {
  font-size:clamp(30px,4vw,48px);
}
h3 {
  font-size:20px;
}
.lead {
  font-size:19px;
  color:var(--muted);
  max-width:650px;
}
.hero {
  padding:84px 0 58px;
  overflow:hidden;
}
.hero-grid {
  display:grid;
  grid-template-columns:1.15fr .85fr;
  align-items:center;
  gap:65px;
}
.hero h1 span {
  color:var(--red);
}
.hero-actions {
  display:flex;
  gap:12px;
  margin:30px 0 32px;
  flex-wrap:wrap;
}
.trust-row {
  display:flex;
  align-items:center;
  gap:24px;
  flex-wrap:wrap;
  color:#4b5563;
  font-size:13px;
  font-weight:650;
}
.trust-item {
  display:flex;
  align-items:center;
  gap:8px;
}
.check {
  display:grid;
  place-items:center;
  width:20px;
  height:20px;
  border-radius:50%;
  color:var(--red);
  background:var(--red-soft);
  font-size:12px;
}
.hero-panel {
  position:relative;
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  padding:22px;
  box-shadow:var(--shadow);
}
.hero-panel:before {
  content:"";
  position:absolute;
  inset:-26px -50px auto auto;
  width:190px;
  height:190px;
  border-radius:50%;
  background:rgba(211,47,47,.07);
  z-index:-1;
}
.status-bar {
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid var(--line);
  padding:5px 3px 18px;
}
.live {
  display:flex;
  align-items:center;
  gap:8px;
  font-size:12px;
  font-weight:800;
  color:#166534;
}
.dot {
  width:8px;
  height:8px;
  border-radius:50%;
  background:#22c55e;
  box-shadow:0 0 0 5px #dcfce7;
}
.delivery-card {
  padding:27px 4px 12px;
}
.delivery-card small {
  color:var(--muted);
}
.delivery-time {
  font-size:56px;
  line-height:1;
  font-weight:850;
  letter-spacing:-.06em;
  margin:8px 0;
}
.delivery-time span {
  font-size:20px;
  color:var(--muted);
}
.mini-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
.mini-card {
  padding:15px;
  border-radius:13px;
  background:var(--paper);
  border:1px solid var(--line);
}
.mini-card b {
  display:block;
  font-size:13px;
}
.mini-card span {
  font-size:12px;
  color:var(--muted);
}
.section {
  padding:86px 0;
}
.section-white {
  background:#fff;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.section-head {
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:32px;
  margin-bottom:34px;
}
.section-head p {
  max-width:500px;
  margin:0;
  color:var(--muted);
}
.grid-3 {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px;
}
.card {
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:26px;
  transition:.25s;
  box-shadow:0 2px 4px rgba(17,24,39,.02);
}
.card:hover {
  transform:translateY(-4px);
  border-color:#efb5b5;
  box-shadow:var(--shadow);
}
.icon-box {
  width:44px;
  height:44px;
  display:grid;
  place-items:center;
  background:var(--red-soft);
  color:var(--red);
  border-radius:11px;
  margin-bottom:22px;
  font-weight:900;
}
.card p {
  color:var(--muted);
  font-size:14px;
}
.price {
  font-size:30px;
  font-weight:850;
  letter-spacing:-.04em;
  margin:18px 0;
}
.price small {
  font-size:13px;
  color:var(--muted);
  font-weight:500;
}
.card-link {
  display:inline-flex;
  color:var(--red);
  font-weight:750;
  font-size:14px;
  gap:7px;
}
.steps {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  counter-reset:step;
}
.step {
  position:relative;
  padding:0 30px 0 0;
}
.step:not(:last-child):after {
  content:"";
  position:absolute;
  top:22px;
  left:55px;
  right:15px;
  height:1px;
  background:var(--line);
}
.step-num {
  position:relative;
  z-index:1;
  width:44px;
  height:44px;
  background:var(--ink);
  color:white;
  border-radius:12px;
  display:grid;
  place-items:center;
  font-weight:800;
  margin-bottom:18px;
}
.step p {
  font-size:14px;
  color:var(--muted);
}
.quote {
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  min-height:220px;
}
.quote p {
  font-size:16px;
  color:#374151;
}
.person {
  display:flex;
  align-items:center;
  gap:12px;
}
.avatar {
  width:38px;
  height:38px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:var(--ink);
  color:#fff;
  font-size:12px;
}
.person small {
  display:block;
  color:var(--muted);
}
.cta-band {
  background:var(--ink);
  color:#fff;
  border-radius:24px;
  padding:38px 42px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  overflow:hidden;
  position:relative;
}
.cta-band:after {
  content:"";
  position:absolute;
  width:230px;
  height:230px;
  border:45px solid rgba(211,47,47,.6);
  border-radius:50%;
  right:22%;
  top:45%;
}
.cta-band>* {
  position:relative;
  z-index:1;
}
.cta-band h2 {
  font-size:32px;
}
.cta-band p {
  color:#cbd5e1;
  margin:8px 0 0;
}
.page-hero {
  padding:68px 0 48px;
  border-bottom:1px solid var(--line);
}
.page-hero .lead {
  margin-bottom:0;
}
.breadcrumb {
  font-size:13px;
  color:var(--muted);
  margin-bottom:20px;
}
.breadcrumb span {
  color:var(--red);
}
.filters {
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin-bottom:26px;
}
.filter {
  border:1px solid var(--line);
  background:#fff;
  border-radius:99px;
  padding:8px 14px;
  font-weight:700;
  font-size:13px;
  cursor:pointer;
}
.filter.active,.filter:hover {
  border-color:var(--red);
  color:var(--red);
  background:var(--red-soft);
}
.product-card {
  display:flex;
  flex-direction:column;
}
.product-card .tag,.campaign-tag {
  align-self:flex-start;
  padding:5px 9px;
  border-radius:6px;
  background:var(--red-soft);
  color:var(--red);
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.features {
  list-style:none;
  padding:0;
  margin:18px 0;
}
.features li {
  padding:8px 0;
  border-bottom:1px solid var(--line);
  font-size:14px;
  color:#4b5563;
}
.features li:before {
  content:"✓";
  color:var(--red);
  font-weight:900;
  margin-right:9px;
}
.product-card .btn {
  margin-top:auto;
}
.table-wrap {
  overflow:auto;
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
}
table {
  width:100%;
  border-collapse:collapse;
  min-width:760px;
}
th,td {
  text-align:left;
  padding:17px 20px;
  border-bottom:1px solid var(--line);
  font-size:14px;
}
th {
  background:#f9fafb;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:#4b5563;
}
td:not(:first-child) {
  text-align:center;
}
.campaign-card {
  position:relative;
  overflow:hidden;
}
.campaign-card .saving {
  font-size:36px;
  font-weight:850;
  color:var(--red);
  margin:18px 0 4px;
}
.campaign-card .meta {
  font-size:12px;
  color:var(--muted);
  padding-top:16px;
  border-top:1px solid var(--line);
}
.forum-layout {
  display:grid;
  grid-template-columns:1fr 320px;
  gap:28px;
}
.search-box {
  display:flex;
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  padding:6px;
  margin-bottom:22px;
}
.search-box input {
  border:0;
  outline:0;
  flex:1;
  padding:8px 12px;
  background:transparent;
}
.topic {
  display:grid;
  grid-template-columns:46px 1fr auto;
  align-items:center;
  gap:16px;
  background:#fff;
  border:1px solid var(--line);
  padding:18px;
  border-radius:14px;
  margin-bottom:10px;
  transition:.2s;
}
.topic:hover {
  border-color:#efb5b5;
  transform:translateX(3px);
}
.topic h3 {
  font-size:16px;
  letter-spacing:-.02em;
}
.topic p,.topic-meta {
  margin:4px 0 0;
  font-size:12px;
  color:var(--muted);
}
.topic-count {
  text-align:right;
}
.topic-count b {
  display:block;
}
.side-card {
  background:#fff;
  border:1px solid var(--line);
  padding:22px;
  border-radius:16px;
  margin-bottom:16px;
}
.category-list {
  list-style:none;
  padding:0;
  margin:14px 0 0;
}
.category-list li {
  display:flex;
  justify-content:space-between;
  padding:9px 0;
  border-bottom:1px solid var(--line);
  font-size:13px;
}
.accordion-item {
  border-bottom:1px solid var(--line);
}
.accordion-btn {
  width:100%;
  border:0;
  background:none;
  padding:18px 0;
  text-align:left;
  font-weight:750;
  display:flex;
  justify-content:space-between;
  cursor:pointer;
}
.accordion-content {
  display:grid;
  grid-template-rows:0fr;
  transition:grid-template-rows .3s;
}
.accordion-content>div {
  overflow:hidden;
  color:var(--muted);
  font-size:14px;
}
.accordion-item.open .accordion-content {
  grid-template-rows:1fr;
}
.accordion-item.open .accordion-btn {
  color:var(--red);
}
.contact-grid {
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:30px;
}
.contact-details {
  display:grid;
  gap:12px;
}
.contact-item {
  background:#fff;
  border:1px solid var(--line);
  border-radius:14px;
  padding:18px;
  display:flex;
  gap:15px;
}
.contact-item b {
  display:block;
}
.contact-item span {
  font-size:14px;
  color:var(--muted);
}
.form-card {
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:30px;
  box-shadow:var(--shadow);
}
.field-row {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.field {
  margin-bottom:15px;
}
.field label {
  display:block;
  font-size:13px;
  font-weight:750;
  margin-bottom:6px;
}
.field input,.field textarea,.field select {
  width:100%;
  border:1px solid var(--line);
  background:#fff;
  border-radius:10px;
  padding:12px 13px;
  outline:none;
  transition:.2s;
}
.field textarea {
  min-height:120px;
  resize:vertical;
}
.field input:focus,.field textarea:focus,.field select:focus {
  border-color:var(--red);
  box-shadow:0 0 0 4px rgba(211,47,47,.1);
}
.map {
  height:330px;
  border-radius:20px;
  background:linear-gradient(135deg,#f3f4f6,#e5e7eb);
  border:1px solid var(--line);
  display:grid;
  place-items:center;
  text-align:center;
  overflow:hidden;
}
.map iframe {
  width:100%;
  height:100%;
  border:0;
}
.site-footer {
  padding:58px 0 22px;
  background:#fff;
  border-top:1px solid var(--line);
}
.footer-grid {
  display:grid;
  grid-template-columns:1.4fr repeat(3,1fr);
  gap:45px;
}
.footer-grid h4 {
  margin:0 0 15px;
}
.footer-grid p,.footer-grid a {
  color:var(--muted);
  font-size:13px;
}
.footer-grid a {
  display:block;
  margin:9px 0;
}
.footer-grid a:hover {
  color:var(--red);
}
.footer-bottom {
  display:flex;
  justify-content:space-between;
  border-top:1px solid var(--line);
  margin-top:38px;
  padding-top:20px;
  color:var(--muted);
  font-size:12px;
}
.reveal {
  opacity:0;
  transform:translateY(18px);
}
.reveal.visible {
  opacity:1;
  transform:none;
  transition:opacity .6s,transform .6s;
}
.hide {
  display:none!important;
}
@media(max-width:950px) {
  .nav-links,.nav-actions .btn-secondary {
    display:none;
  }
  .menu-toggle {
    display:block;
  }
  .nav-links.open {
    position:absolute;
    display:flex;
    flex-direction:column;
    align-items:stretch;
    top:78px;
    left:20px;
    right:20px;
    padding:12px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:14px;
    box-shadow:var(--shadow);
  }
  .hero-grid,.contact-grid,.forum-layout {
    grid-template-columns:1fr;
  }
  .hero {
    padding-top:55px;
  }
  .hero-panel {
    max-width:600px;
  }
  .grid-3 {
    grid-template-columns:repeat(2,1fr);
  }
  .steps {
    grid-template-columns:repeat(2,1fr);
    gap:25px;
  }
  .footer-grid {
    grid-template-columns:1fr 1fr;
  }
  .forum-layout aside {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
  }
}
@media(max-width:650px) {
  .container {
    width:min(calc(100% - 28px),var(--container));
  }
  .nav-actions>.btn {
    display:none;
  }
  .brand-copy span {
    display:none;
  }
  h1 {
    font-size:40px;
  }
  .hero-grid {
    gap:35px;
  }
  .section {
    padding:64px 0;
  }
  .section-head {
    display:block;
  }
  .section-head p {
    margin-top:14px;
  }
  .grid-3,.steps,.footer-grid,.field-row,.forum-layout aside {
    grid-template-columns:1fr;
  }
  .step:not(:last-child):after {
    display:none;
  }
  .cta-band {
    align-items:flex-start;
    flex-direction:column;
    padding:30px 25px;
  }
  .footer-bottom {
    flex-direction:column;
    gap:8px;
  }
  .topic {
    grid-template-columns:40px 1fr;
  }
  .topic-count {
    display:none;
  }
  .delivery-time {
    font-size:48px;
  }
}

/* Image-led service cards */
.service-showcase {
  position: relative;
  padding: 92px 0 100px;
  background-color: #f8f9fa;
  background-image: linear-gradient(rgba(17, 24, 39, .028) 1px, transparent 1px), linear-gradient(90deg, rgba(17, 24, 39, .028) 1px, transparent 1px);
  background-size: 48px 48px;
  overflow: hidden;
}
.service-showcase::before,
.service-showcase::after {
  position: absolute;
  top: 50%;
  z-index: 0;
  color: #9ca3af;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .26em;
  writing-mode: vertical-rl;
  transform: translateY(-50%);
}
.service-showcase::before {
  content: "Samsun E-İmza Ofisi  /  2026";
  left: 34px;
}
.service-showcase::after {
  content: "Güvenli  •  Hızlı  •  Yerel";
  right: 34px;
  transform: translateY(-50%) rotate(180deg);
}
.service-showcase > .container {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 220px), 1480px);
}
.service-showcase > .container::before,
.service-showcase > .container::after {
  content: "";
  position: absolute;
  top: 7px;
  width: 58px;
  height: 58px;
  pointer-events: none;
}
.service-showcase > .container::before {
  left: -82px;
  border-top: 1px solid rgba(211, 47, 47, .45);
  border-left: 1px solid rgba(211, 47, 47, .45);
}
.service-showcase > .container::after {
  right: -82px;
  border-top: 1px solid rgba(17, 24, 39, .18);
  border-right: 1px solid rgba(17, 24, 39, .18);
}
.service-showcase-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 38px;
}
.service-showcase-head h2 {
  margin-top: 12px;
}
.service-showcase-head > p {
  max-width: 510px;
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 15px;
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.service-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 3px 10px rgba(17, 24, 39, .03);
  overflow: hidden;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: #d9dde4;
  box-shadow: 0 22px 48px rgba(17, 24, 39, .1);
}
.service-card-media {
  position: relative;
  display: block;
  height: 300px;
  background: #e5e7eb;
  overflow: hidden;
}
.service-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 16, 23, .22), transparent 42%);
  transition: opacity .3s ease;
}
.service-card:hover .service-card-media::after {
  opacity: .55;
}
.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s cubic-bezier(.2, .7, .2, 1);
}
.service-card-red .service-card-media img {
  object-position: 56% center;
}
.service-card-blue .service-card-media img {
  object-position: 62% center;
}
.service-card-light .service-card-media img {
  object-position: 58% center;
}
.service-card:hover .service-card-media img {
  transform: scale(1.035);
}
.service-card-index {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 15px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 50%;
  color: #fff;
  background: rgba(14, 17, 22, .55);
  backdrop-filter: blur(8px);
  font-size: 11px;
  font-weight: 800;
}
.service-card-body {
  min-height: 294px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 26px;
  padding: 27px 28px 25px;
}
.service-card-label {
  display: block;
  margin-bottom: 10px;
  color: var(--red);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .09em;
}
.service-card h3 {
  font-size: 23px;
}
.service-card p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 14px;
}
.service-card-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 17px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}
.service-card-link span {
  color: var(--red);
  font-size: 18px;
  transition: transform .2s ease;
}
.service-card-link:hover {
  color: var(--red);
}
.service-card-link:hover span {
  transform: translate(3px, -3px);
}
@media(max-width:950px) {
  .service-showcase > .container {
    width: min(calc(100% - 40px), var(--container));
  }
  .service-showcase::before,
  .service-showcase::after,
  .service-showcase > .container::before,
  .service-showcase > .container::after {
    display: none;
  }
  .service-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .service-card:last-child {
    grid-column: 1 / -1;
  }
}
@media(max-width:650px) {
  .service-showcase {
    padding: 68px 0 74px;
  }
  .service-showcase-head {
    display: block;
  }
  .service-showcase-head > p {
    margin-top: 16px;
  }
  .service-showcase > .container {
    width: min(calc(100% - 28px), var(--container));
  }
  .service-cards {
    grid-template-columns: 1fr;
  }
  .service-card:last-child {
    grid-column: auto;
  }
  .service-card-media {
    height: 260px;
  }
  .service-card-body {
    min-height: 0;
  }
}

/* Global WhatsApp support button */
.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 58px;
  padding: 7px 17px 7px 8px;
  border: 1px solid rgba(255,255,255,.38);
  border-radius: 999px;
  color: #fff;
  background: #168b50;
  box-shadow: 0 14px 34px rgba(13,94,52,.27);
  transition: background .22s ease, box-shadow .22s ease, transform .22s ease;
}
.whatsapp-float:hover {
  color: #fff;
  background: #117943;
  box-shadow: 0 18px 42px rgba(13,94,52,.34);
  transform: translateY(-3px);
}
.whatsapp-float-icon {
  display: grid;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: rgba(255,255,255,.13);
}
.whatsapp-float-icon svg {
  width: 25px;
  height: 25px;
}
.whatsapp-float-copy,
.whatsapp-float-copy small,
.whatsapp-float-copy strong {
  display: block;
}
.whatsapp-float-copy small {
  margin-bottom: 2px;
  color: rgba(255,255,255,.72);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .045em;
  text-transform: uppercase;
}
.whatsapp-float-copy strong {
  color: #fff;
  font-size: 16px;
  font-weight: 780;
  white-space: nowrap;
}
@media(max-width:620px) {
  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    min-height: 54px;
    padding: 6px;
    justify-content: center;
  }
  .whatsapp-float-icon {
    width: 42px;
    height: 42px;
  }
  .whatsapp-float-copy {
    display: none;
  }
}
@media(prefers-reduced-motion:reduce) {
  .whatsapp-float {
    transition: none;
  }
}

/* Refined pre-footer contact section */
.prefooter-cta {
  padding: 94px 0 0;
  color: var(--ink);
  background: #f5f5f3;
  overflow: hidden;
}
.prefooter-cta::before,
.prefooter-word {
  display: none;
}
.prefooter-main {
  grid-template-columns: minmax(0, 1fr) 430px;
  align-items: center;
  gap: clamp(60px, 9vw, 140px);
  padding-bottom: 78px;
}
.prefooter-kicker {
  margin-bottom: 22px;
  color: #166534;
}
.prefooter-copy h2 {
  max-width: 760px;
  color: var(--ink);
  font-size: clamp(44px, 5vw, 70px);
  line-height: 1.02;
}
.prefooter-copy h2 span {
  color: var(--red);
}
.prefooter-copy > p {
  max-width: 590px;
  color: var(--muted);
}
.prefooter-actions {
  gap: 12px;
  padding: 8px;
  border: 1px solid #dedfdf;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(17,24,39,.07);
}
.prefooter-primary {
  min-height: 90px;
  border-radius: 12px;
  box-shadow: none;
}
.prefooter-contact-grid {
  gap: 0;
}
.prefooter-contact-grid a {
  padding: 16px 15px;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
}
.prefooter-contact-grid a + a {
  border-left: 1px solid var(--line);
}
.prefooter-contact-grid a:hover {
  border-color: var(--line);
  background: #f9fafb;
}
.prefooter-contact-grid small {
  color: #8a919c;
}
.prefooter-contact-grid strong {
  color: var(--ink);
}
.prefooter-trust {
  border-top: 1px solid #dedfdf;
}
.prefooter-trust > div {
  border-left-color: #dedfdf;
}
.prefooter-trust span {
  color: var(--red);
}
.prefooter-trust p {
  color: #8a919c;
}
.prefooter-trust strong {
  color: #374151;
}
@media(max-width:900px) {
  .prefooter-main {
    grid-template-columns: 1fr;
    align-items: start;
  }
  .prefooter-trust > div:nth-child(3) {
    border-left-color: transparent;
  }
}
@media(max-width:600px) {
  .prefooter-cta {
    padding-top: 68px;
  }
  .prefooter-actions {
    padding: 7px;
  }
  .prefooter-contact-grid a + a {
    border-top: 1px solid var(--line);
    border-left: 0;
  }
  .prefooter-trust > div {
    border-top-color: #dedfdf;
  }
}

/* Final CTA pattern treatment */
.cta-stage {
  background-color: #f6f7f8;
  background-image: radial-gradient(circle, rgba(17,24,39,.11) 1px, transparent 1.2px);
  background-size: 18px 18px;
}
.cta-stage::before {
  background: linear-gradient(90deg, transparent 0%, rgba(246,247,248,.42) 18%, rgba(246,247,248,.97) 36%, rgba(246,247,248,.97) 64%, rgba(246,247,248,.42) 82%, transparent 100%);
}
.cta-stage-pattern {
  width: 330px;
  height: 190px;
  border: 0;
  border-radius: 0;
  background-image: repeating-linear-gradient(135deg, rgba(211,47,47,.25) 0, rgba(211,47,47,.25) 1px, transparent 1px, transparent 13px);
  opacity: .9;
  -webkit-mask-image: linear-gradient(90deg,transparent,#000 25%,#000 75%,transparent);
  mask-image: linear-gradient(90deg,transparent,#000 25%,#000 75%,transparent);
}
.cta-stage-pattern::before {
  inset: 44px 82px;
  border: 1px solid rgba(211,47,47,.42);
  border-radius: 0;
  transform: rotate(45deg);
}
.cta-stage-pattern::after {
  inset: 73px 111px;
  border: 0;
  border-radius: 3px;
  background: var(--red);
  transform: rotate(45deg);
}
.cta-stage-pattern-left {
  left: 28px;
}
.cta-stage-pattern-right {
  right: 28px;
  transform: translateY(-50%) rotate(180deg);
}
@media(max-width:1650px) {
  .cta-stage-pattern-left { left: -110px; }
  .cta-stage-pattern-right { right: -110px; }
}
@media(max-width:1050px) {
  .cta-stage-pattern { opacity: .45; }
}
@media(max-width:700px) {
  .cta-stage-pattern { display: none; }
}

/* Service experience comparison */
.service-compare {
  padding: 105px 0;
  background: #f5f6f7;
}
.service-compare > .container {
  width: min(calc(100% - 64px), 1320px);
}
.service-compare-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 42px;
}
.service-compare-head h2 {
  max-width: 760px;
  margin-top: 12px;
}
.service-compare-head > p {
  max-width: 470px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.service-compare-board {
  border: 1px solid #dce0e5;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(17,24,39,.06);
  overflow: hidden;
}
.service-compare-labels,
.service-compare-row {
  display: grid;
  grid-template-columns: 1.05fr .95fr 1.2fr;
}
.service-compare-labels {
  min-height: 70px;
  border-bottom: 1px solid #dce0e5;
  background: #f9fafb;
}
.service-compare-labels > span {
  display: flex;
  align-items: center;
  padding: 0 25px;
  border-left: 1px solid #e2e5e9;
  color: #747d89;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .07em;
}
.service-compare-labels > span:first-child {
  border-left: 0;
}
.service-compare-labels .our-label {
  justify-content: center;
  gap: 10px;
  color: var(--ink);
  background: #fff6f5;
}
.compare-brand-logo {
  display: block;
  width: 76px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 5px 14px rgba(211,47,47,.16);
}
.service-compare-row {
  min-height: 106px;
  border-bottom: 1px solid #e2e5e9;
}
.service-compare-row:last-child {
  border-bottom: 0;
}
.service-compare-row > * {
  display: flex;
  align-items: center;
  padding: 20px 25px;
  border-left: 1px solid #e2e5e9;
}
.service-compare-row > *:first-child {
  border-left: 0;
}
.service-compare-row > div {
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}
.service-compare-row strong,
.service-compare-row small {
  display: block;
}
.service-compare-row strong {
  color: var(--ink);
  font-size: 16px;
}
.service-compare-row small {
  margin-top: 5px;
  color: #8a919c;
  font-size: 14px;
}
.service-compare-row > p {
  gap: 11px;
  margin: 0;
  color: #7a828e;
  font-size: 14px;
}
.service-compare-row > p > span {
  flex: 0 0 auto;
}
.compare-minus {
  color: #a9afb7;
  font-weight: 900;
}
.service-compare-row .our-value {
  color: #303744;
  background: #fffafa;
  font-weight: 650;
}
.service-compare-row .our-value > span {
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  color: var(--red);
  background: #fee2e2;
  font-size: 11px;
  font-weight: 900;
}
.service-compare-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 18px;
  border: 1px solid #dce0e5;
  border-radius: 14px;
  background: #fff;
}
.service-compare-summary > div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 100px;
  padding: 20px 24px;
  border-left: 1px solid #e2e5e9;
}
.service-compare-summary > div:first-child {
  border-left: 0;
}
.summary-mark {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 32px;
  height: 32px;
  border-radius: 9px;
  color: #fff;
  background: var(--red);
  font-weight: 900;
}
.service-compare-summary p {
  margin: 0;
  color: #7a828e;
  font-size: 14px;
}
.service-compare-summary strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 16px;
}
@media(max-width:800px) {
  .service-compare {
    padding: 76px 0;
  }
  .service-compare > .container {
    width: min(calc(100% - 28px), 1320px);
  }
  .service-compare-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .service-compare-board {
    overflow-x: auto;
  }
  .service-compare-labels,
  .service-compare-row {
    min-width: 760px;
  }
  .service-compare-summary {
    grid-template-columns: 1fr;
  }
  .service-compare-summary > div {
    border-top: 1px solid #e2e5e9;
    border-left: 0;
  }
  .service-compare-summary > div:first-child {
    border-top: 0;
  }
}

/* Light, high-legibility footer */
.site-footer.footer-modern {
  padding: 88px 0 30px;
  border-top: 1px solid #dfe2e6;
  color: var(--ink);
  background-color: #fff;
  background-image: radial-gradient(circle at 82% 18%, rgba(211,47,47,.045), transparent 24%), repeating-linear-gradient(135deg, rgba(17,24,39,.032) 0, rgba(17,24,39,.032) 1px, transparent 1px, transparent 15px);
  background-size: 100% 100%, 21px 21px;
  background-position: center;
  background-repeat: no-repeat, repeat;
}
.site-footer.footer-modern::before {
  height: 4px;
  background: var(--red);
}
.site-footer.footer-modern > .container {
  position: relative;
  z-index: 1;
}
.footer-modern .brand-copy strong {
  color: var(--ink);
}
.footer-modern .brand-copy span {
  color: #667085;
}
.footer-modern-top {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 500px);
  align-items: center;
  gap: clamp(70px, 10vw, 160px);
  padding-bottom: 72px;
}
.footer-modern-brand h2 {
  max-width: 700px;
  margin-top: 34px;
  color: var(--ink);
  font-size: clamp(40px, 4.3vw, 60px);
  line-height: 1.06;
}
.footer-modern-brand > p {
  max-width: 600px;
  margin-top: 22px;
  color: #596273;
  font-size: 16px;
  line-height: 1.7;
}
.footer-modern-contact {
  padding: 10px 28px;
  border: 1px solid #dfe2e6;
  border-top: 3px solid var(--red);
  border-radius: 18px;
  color: var(--ink);
  background: #f8f9fa;
  box-shadow: 0 12px 34px rgba(17,24,39,.06);
}
.footer-open {
  padding: 20px 2px;
  border-bottom-color: #dfe2e6;
}
.footer-open .dot {
  position: relative;
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  animation: office-status-blink 1.7s ease-in-out infinite;
}
.footer-open .dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(34,197,94,.55);
  border-radius: 50%;
  animation: office-status-ring 1.7s ease-out infinite;
}
@keyframes office-status-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .38; transform: scale(.82); }
}
@keyframes office-status-ring {
  0% { opacity: .7; transform: scale(.55); }
  70%, 100% { opacity: 0; transform: scale(1.35); }
}
@media(prefers-reduced-motion:reduce) {
  .footer-open .dot,
  .footer-open .dot::after {
    animation: none;
  }
}
.footer-open strong {
  color: var(--ink);
  font-size: 18px;
}
.footer-open span {
  color: #667085;
  font-size: 14px;
}
.footer-contact-row {
  grid-template-columns: 120px 1fr 24px;
  padding: 20px 2px;
  border-bottom-color: #dfe2e6;
}
.footer-contact-row small {
  color: #7b8491;
  font-size: 11px;
}
.footer-contact-row strong {
  color: var(--ink);
  font-size: 14px;
}
.footer-contact-row > span {
  font-size: 20px;
}
.footer-modern-nav {
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: clamp(38px, 5vw, 70px);
  padding: 52px 0 56px;
  border-top-color: #dfe2e6;
  border-bottom-color: #dfe2e6;
}
.footer-office {
  border-right-color: #dfe2e6;
}
.footer-modern-nav h4,
.footer-office > span {
  margin-bottom: 20px;
  color: #737b87;
  font-size: 12px;
}
.footer-modern-nav a {
  margin: 13px 0;
  color: #414957;
  font-size: 14px;
}
.footer-modern-nav nav a:hover {
  color: var(--red);
}
.footer-office p {
  color: var(--ink);
  font-size: 15px;
}
.footer-office a {
  color: var(--red);
  font-size: 14px;
}
.footer-modern-bottom {
  padding-top: 27px;
  color: #707887;
  font-size: 12px;
}
.footer-modern-bottom a {
  color: #4b5563;
  font-size: 12px;
}
.footer-modern-bottom a:hover {
  color: var(--red);
}
@media(max-width:900px) {
  .footer-modern-top {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .footer-modern-contact {
    max-width: 100%;
  }
  .footer-modern-nav {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(max-width:560px) {
  .site-footer.footer-modern {
    padding-top: 64px;
  }
  .footer-modern-contact {
    padding-inline: 20px;
  }
  .footer-modern-nav {
    grid-template-columns: 1fr;
  }
  .footer-modern-bottom {
    gap: 18px;
  }
}

/* Product catalog — horizontal list */
.product-catalog {
  padding: 96px 0 104px;
  background: #f7f8f9;
}
.product-catalog-head {
  margin-bottom: 36px;
  padding-bottom: 30px;
  border-bottom: 1px solid #d9dde2;
}
.product-editorial-grid {
  display: block;
  border-top: 1px solid #d9dde2;
}
.product-editorial,
.product-editorial-featured {
  min-height: 0;
  display: grid;
  grid-template-columns: 115px 145px minmax(0, 1fr) 270px;
  align-items: center;
  gap: 38px;
  padding: 30px 20px;
  border: 0;
  border-bottom: 1px solid #d9dde2;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  overflow: visible;
  transition: padding .25s ease, background .25s ease;
}
.product-thumb {
  width: 145px;
  height: 112px;
  margin: 0;
  border-radius: 11px;
  background: #e5e7eb;
  overflow: hidden;
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
}
.product-thumb-alt img {
  object-position: 70% center;
}
.product-thumb-wide img {
  object-position: 42% center;
}
.product-editorial:hover .product-thumb img {
  transform: scale(1.06);
}
.product-editorial:hover,
.product-editorial-featured:hover {
  transform: none;
  padding-right: 14px;
  padding-left: 26px;
  border-color: #d9dde2;
  background: #fff;
  box-shadow: none;
}
.product-editorial-featured {
  margin: 12px 0;
  border: 1px solid #efb6b6;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(17,24,39,.055);
}
.product-editorial-featured::after {
  display: none;
}
.product-editorial-top {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  padding-right: 25px;
  border-right: 1px solid #dfe2e6;
}
.product-number {
  color: #8c949f;
  font-size: 12px;
}
.product-badge,
.product-editorial-featured .product-badge {
  padding: 6px 9px;
  border: 1px solid #dfe2e6;
  color: #636c78;
  background: #fff;
  font-size: 9px;
}
.product-editorial-featured .product-badge {
  border-color: #f1b9b9;
  color: var(--red);
  background: #fff5f5;
}
.product-editorial-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  column-gap: 36px;
  align-items: center;
}
.product-editorial-content .product-type,
.product-editorial-content h3,
.product-editorial-content > p {
  grid-column: 1;
}
.product-editorial h3 {
  margin-top: 7px;
  font-size: 24px;
}
.product-editorial-content > p,
.product-editorial-featured .product-editorial-content > p {
  max-width: 520px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.product-price {
  grid-column: 2;
  grid-row: 1 / span 3;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  text-align: right;
  background: transparent;
}
.product-price small {
  margin-bottom: 7px;
}
.product-price strong,
.product-editorial-featured .product-price strong {
  color: var(--ink);
  font-size: 32px;
}
.product-price-text strong {
  font-size: 22px;
}
.product-editorial-bottom,
.product-editorial-featured .product-editorial-bottom {
  align-self: stretch;
  align-items: center;
  margin: 0;
  padding: 0 0 0 25px;
  border-top: 0;
  border-left: 1px solid #dfe2e6;
}
.product-editorial-bottom ul {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.product-editorial-bottom li {
  color: #68717e;
  font-size: 10px;
}
.product-editorial-bottom a {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid #d9dde2;
  border-radius: 50%;
  color: transparent;
  font-size: 0;
  background: #fff;
  transition: .2s;
}
.product-editorial-bottom a::after {
  content: "→";
  color: var(--red);
  font-size: 18px;
}
.product-editorial:hover .product-editorial-bottom a,
.product-editorial-bottom a:hover {
  border-color: var(--red);
  background: var(--red);
}
.product-editorial:hover .product-editorial-bottom a::after,
.product-editorial-bottom a:hover::after {
  color: #fff;
}
@media(max-width:1050px) {
  .product-editorial,
  .product-editorial-featured {
    grid-template-columns: 100px 130px minmax(0, 1fr);
  }
  .product-thumb {
    width: 130px;
    height: 105px;
  }
  .product-editorial-bottom,
  .product-editorial-featured .product-editorial-bottom {
    grid-column: 3;
    padding: 20px 0 0;
    border-top: 1px solid #dfe2e6;
    border-left: 0;
  }
}
@media(max-width:680px) {
  .product-editorial,
  .product-editorial-featured {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 26px 18px;
  }
  .product-editorial:hover,
  .product-editorial-featured:hover {
    padding: 26px 18px;
  }
  .product-editorial-top {
    flex-direction: row;
    padding: 0 0 16px;
    border-right: 0;
    border-bottom: 1px solid #dfe2e6;
  }
  .product-thumb {
    width: 100%;
    height: 190px;
  }
  .product-editorial-content {
    grid-template-columns: 1fr;
  }
  .product-price {
    grid-column: 1;
    grid-row: auto;
    margin-top: 20px;
    text-align: left;
  }
  .product-editorial-bottom,
  .product-editorial-featured .product-editorial-bottom {
    grid-column: 1;
  }
}

/* Community forum — board layout */
.community-forum {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 64px 0 110px;
  color: #111827;
  background-color: #f4f5f6;
  background-image:
    linear-gradient(rgba(115,123,135,.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(115,123,135,.075) 1px, transparent 1px);
  background-size: 32px 32px;
  border-bottom: 1px solid #dfe2e5;
}

/* Forum article detail */
.article-page { color: #111827; background: #fff; }
.article-shell { width: min(calc(100% - 64px), 1260px); margin: 0 auto; }
.article-header { padding: 48px 0 58px; border-bottom: 1px solid #dfe2e5; background: #f7f7f6; }
.article-header-inner { max-width: 1060px; }
.article-breadcrumb { display: flex; flex-wrap: wrap; gap: 8px; color: #8a929d; font-size: 10px; }
.article-breadcrumb a { color: #606a77; }
.article-breadcrumb a:hover { color: #c62828; }
.article-label { display: inline-flex; margin-top: 42px; padding: 7px 10px; border: 1px solid #e5b5b5; border-radius: 5px; color: #c62828; background: #fff8f7; font-size: 9px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.article-header h1 { max-width: 980px; margin-top: 17px; font-size: clamp(42px, 5.5vw, 72px); line-height: 1.02; letter-spacing: -.055em; }
.article-lead { max-width: 800px; margin-top: 23px; color: #5f6977; font-size: 17px; line-height: 1.7; }
.article-meta { display: flex; flex-wrap: wrap; gap: 18px 38px; margin-top: 36px; padding-top: 22px; border-top: 1px solid #d8dce0; }
.article-meta > span { min-width: 120px; }
.article-meta small,.article-meta strong { display: block; }
.article-meta small { color: #8b939e; font-size: 8px; text-transform: uppercase; }
.article-meta strong { margin-top: 5px; color: #394250; font-size: 10px; }
.article-meta .article-verified { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.article-verified i { width: 7px; height: 7px; border-radius: 50%; background: #22a45a; box-shadow: 0 0 0 4px rgba(34,164,90,.1); }
.article-cover { margin: 54px 0 0; }
.article-cover img { width: 100%; height: clamp(360px, 48vw, 620px); object-fit: cover; object-position: center; border-radius: 10px; }
.article-cover figcaption { margin-top: 10px; color: #8b939e; font-size: 9px; }
.article-layout { display: grid; grid-template-columns: minmax(0, 820px) 260px; justify-content: space-between; gap: 70px; padding: 70px 0 110px; }
.article-body { min-width: 0; }
.article-intro { padding-bottom: 42px; border-bottom: 1px solid #dfe2e5; color: #384251; font-size: 19px; line-height: 1.75; }
.article-body > section { position: relative; padding: 52px 0; border-bottom: 1px solid #dfe2e5; }
.article-section-no { display: block; margin-bottom: 14px; color: #c62828; font-size: 9px; font-weight: 850; letter-spacing: .08em; }
.article-body h2 { font-size: 30px; letter-spacing: -.035em; }
.article-body section > p { margin-top: 17px; color: #5f6977; font-size: 15px; line-height: 1.85; }
.article-checklist { display: grid; gap: 0; margin-top: 26px; border-top: 1px solid #dfe2e5; }
.article-checklist > div { display: grid; grid-template-columns: 24px 1fr; gap: 11px; padding: 14px 0; border-bottom: 1px solid #dfe2e5; color: #4d5765; font-size: 12px; }
.article-checklist i { color: #22a45a; font-style: normal; font-weight: 900; }
.article-note { margin-top: 27px; padding: 22px 24px; border-left: 4px solid #d32f2f; background: #fff7f6; }
.article-note strong { color: #b92323; font-size: 10px; text-transform: uppercase; }
.article-note p { margin-top: 8px; color: #626c79; font-size: 12px; line-height: 1.7; }
.article-gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.article-gallery figure { margin: 0; }
.article-gallery img { width: 100%; height: 280px; object-fit: cover; border-radius: 8px; }
.article-gallery figcaption { margin-top: 8px; color: #8c949f; font-size: 9px; }
.article-video { position: relative; width: 100%; margin-top: 28px; padding-top: 56.25%; overflow: hidden; border-radius: 8px; background: #111827; }
.article-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.article-video-section[hidden],.article-media-section[hidden] { display: none; }
.article-end { display: grid; grid-template-columns: auto auto 1fr; align-items: center; gap: 18px; margin-top: 54px; padding: 22px 0; border-top: 2px solid #111827; border-bottom: 1px solid #dfe2e5; }
.article-end > span { color: #4f5967; font-size: 11px; font-weight: 750; }
.article-end div { display: flex; gap: 6px; }
.article-end button { min-height: 32px; padding: 0 12px; border: 1px solid #d5d9de; border-radius: 5px; color: #596371; background: #fff; font: inherit; font-size: 9px; cursor: pointer; }
.article-end button:hover { border-color: #d32f2f; color: #c62828; }
.article-end > a { justify-self: end; color: #c62828; font-size: 10px; font-weight: 800; }
.article-aside { position: sticky; top: 105px; align-self: start; }
.article-toc { padding: 23px; border: 1px solid #d8dce0; border-radius: 9px; background: #fafafa; }
.article-toc > span { display: block; padding-bottom: 14px; border-bottom: 1px solid #dfe2e5; color: #8a929d; font-size: 9px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.article-toc a { display: block; padding: 12px 0; border-bottom: 1px solid #e4e6e8; color: #606a77; font-size: 10px; line-height: 1.45; }
.article-toc a:last-child { border-bottom: 0; }
.article-toc a:hover { color: #c62828; }
.article-help { margin-top: 16px; padding: 25px 23px; border-radius: 9px; color: #fff; background: #141c2b; }
.article-help > span { color: #ff8080; font-size: 8px; font-weight: 850; text-transform: uppercase; }
.article-help h3 { margin-top: 9px; color: #fff; font-size: 20px; }
.article-help p { margin-top: 9px; color: #aeb8c7; font-size: 10px; line-height: 1.6; }
.article-help a { display: inline-block; margin-top: 18px; color: #fff; font-size: 10px; font-weight: 800; }
@media(max-width:900px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-aside { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
  .article-help { margin-top: 0; }
}
@media(max-width:650px) {
  .article-shell { width: min(calc(100% - 28px), 1260px); }
  .article-header { padding: 36px 0 42px; }
  .article-label { margin-top: 30px; }
  .article-lead { font-size: 15px; }
  .article-meta .article-verified { width: 100%; margin-left: 0; }
  .article-cover { margin-top: 30px; }
  .article-cover img { height: 300px; }
  .article-layout { gap: 45px; padding: 48px 0 75px; }
  .article-intro { font-size: 16px; }
  .article-body > section { padding: 40px 0; }
  .article-gallery { grid-template-columns: 1fr; }
  .article-gallery img { height: 240px; }
  .article-end { grid-template-columns: 1fr; }
  .article-end > a { justify-self: start; }
  .article-aside { grid-template-columns: 1fr; }
}

/* Article detail — editorial document redesign */
.article-page { background: #f3f4f5; }
.article-shell { width: min(calc(100% - 64px), 1360px); }
.article-header {
  padding: 42px 0 48px;
  border-bottom: 1px solid #d8dce0;
  background: #fff;
}
.article-header-inner { max-width: 1180px; }
.article-breadcrumb { font-size: 11px; }
.article-label {
  margin-top: 34px;
  padding: 0 0 6px;
  border: 0;
  border-bottom: 2px solid #d32f2f;
  border-radius: 0;
  background: transparent;
  font-size: 10px;
}
.article-header h1 {
  max-width: 900px;
  margin-top: 18px;
  font-size: clamp(38px, 4.3vw, 58px);
  line-height: 1.07;
  letter-spacing: -.048em;
}
.article-lead { max-width: 760px; margin-top: 18px; font-size: 16px; }
.article-meta {
  max-width: 900px;
  gap: 16px 44px;
  margin-top: 28px;
  padding-top: 18px;
}
.article-meta small { font-size: 9px; }
.article-meta strong { font-size: 11px; }
.article-cover {
  position: relative;
  margin: 34px 0 0;
  overflow: hidden;
  border: 1px solid #d8dce0;
  border-radius: 10px;
  background: #fff;
}
.article-cover img {
  display: block;
  height: clamp(330px, 36vw, 490px);
  border-radius: 0;
}
.article-cover figcaption {
  margin: 0;
  padding: 13px 17px;
  border-top: 1px solid #e0e3e6;
  background: #fff;
  font-size: 10px;
}
.article-layout {
  grid-template-columns: minmax(0, 900px) 280px;
  gap: 34px;
  padding: 34px 0 100px;
}
.article-body {
  padding: 52px 58px 58px;
  border: 1px solid #d8dce0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(17,24,39,.035);
}
.article-intro {
  padding: 0 0 36px;
  color: #303a47;
  font-size: 18px;
  line-height: 1.75;
}
.article-body > section { padding: 44px 0; }
.article-section-no {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
  color: #c62828;
  font-size: 10px;
}
.article-section-no::after { content: ""; width: 34px; height: 1px; background: #e2a6a6; }
.article-body h2 { font-size: 28px; }
.article-body section > p { max-width: 740px; font-size: 14px; line-height: 1.85; }
.article-checklist { border: 1px solid #dfe2e5; border-radius: 7px; overflow: hidden; }
.article-checklist > div { padding: 15px 17px; background: #fafafa; }
.article-note { padding: 20px 22px; border-left-width: 3px; }
.article-gallery { gap: 12px; }
.article-gallery img { height: 245px; border: 1px solid #dfe2e5; border-radius: 7px; }
.article-end { margin-top: 42px; }
.article-aside { top: 96px; }
.article-toc {
  padding: 0;
  overflow: hidden;
  border-radius: 9px;
  background: #fff;
}
.article-toc > span { padding: 18px 20px; background: #111827; color: #fff; }
.article-toc a { position: relative; padding: 14px 20px; font-size: 11px; }
.article-toc a:hover { padding-left: 25px; background: #fff8f7; }
.article-help { padding: 24px 22px; background: #fff; color: #111827; border: 1px solid #d8dce0; }
.article-help > span { color: #c62828; }
.article-help h3 { color: #111827; }
.article-help p { color: #697382; }
.article-help a { padding-bottom: 4px; border-bottom: 1px solid #d32f2f; color: #c62828; }
@media(max-width:900px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-body { padding: 45px; }
}
@media(max-width:650px) {
  .article-shell { width: min(calc(100% - 28px), 1360px); }
  .article-header { padding: 30px 0 38px; }
  .article-label { margin-top: 26px; }
  .article-cover { margin-top: 20px; }
  .article-cover img { height: 260px; }
  .article-layout { padding-top: 18px; }
  .article-body { padding: 32px 20px 38px; }
  .article-intro { font-size: 16px; }
  .article-body > section { padding: 36px 0; }
  .article-gallery img { height: 220px; }
}

/* Forum category detail */
.category-page { color: #111827; background: #f4f5f6; }
.category-page-shell { width: min(calc(100% - 64px), 1440px); margin: 0 auto; }
.category-page-head {
  padding: 52px 0 42px;
  border-bottom: 1px solid #d8dce0;
  background-color: #fafafa;
  background-image:
    linear-gradient(rgba(120,128,139,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(120,128,139,.055) 1px, transparent 1px);
  background-size: 30px 30px;
}
.category-breadcrumb { display: flex; gap: 9px; color: #89919c; font-size: 10px; }
.category-breadcrumb a { color: #626c79; }
.category-breadcrumb strong { color: #c62828; }
.category-heading-grid { display: grid; grid-template-columns: 1fr 430px; align-items: end; gap: 70px; margin-top: 42px; }
.category-kicker { color: #c62828; font-size: 10px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.category-heading-grid h1 { margin-top: 11px; font-size: clamp(42px, 5vw, 66px); line-height: 1; letter-spacing: -.055em; }
.category-heading-grid > p { color: #626c79; font-size: 14px; line-height: 1.75; }
.category-head-meta { display: flex; flex-wrap: wrap; gap: 12px 32px; margin-top: 34px; padding-top: 22px; border-top: 1px solid #d8dce0; color: #7c8591; font-size: 10px; }
.category-head-meta strong { color: #313a47; }
.category-head-meta i { display: inline-block; width: 7px; height: 7px; margin-right: 6px; border-radius: 50%; background: #22a45a; }
.category-content { padding: 68px 0 105px; }
.category-layout { display: grid; grid-template-columns: minmax(0, 1fr) 290px; align-items: start; gap: 54px; }
.category-toolbar { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.category-toolbar form { display: grid; grid-template-columns: 42px 1fr auto; align-items: center; flex: 1; min-height: 58px; padding: 5px; border: 1px solid #d6dade; border-radius: 9px; background: #fff; }
.category-toolbar form > span { color: #8a929e; font-size: 22px; text-align: center; transform: rotate(-20deg); }
.category-toolbar input { min-width: 0; height: 46px; border: 0; outline: 0; background: transparent; font: inherit; font-size: 12px; }
.category-toolbar button { min-height: 44px; padding: 0 20px; border: 0; border-radius: 6px; color: #fff; background: #d32f2f; font: inherit; font-size: 10px; font-weight: 800; }
.category-toolbar > a { color: #626c79; font-size: 10px; font-weight: 750; white-space: nowrap; }
.category-featured { display: grid; grid-template-columns: 1fr 260px; gap: 40px; padding: 36px; border-radius: 12px; color: #fff; background: #141c2b; }
.category-featured > div:first-child > span { color: #ff8080; font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.category-featured h2 { max-width: 670px; margin-top: 12px; color: #fff; font-size: 30px; line-height: 1.18; letter-spacing: -.04em; }
.category-featured p { max-width: 680px; margin-top: 13px; color: #b8c0cd; font-size: 12px; line-height: 1.7; }
.category-featured-meta { display: flex; flex-direction: column; justify-content: center; padding-left: 28px; border-left: 1px solid rgba(255,255,255,.14); }
.category-featured-meta > span { padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,.11); }
.category-featured-meta small,.category-featured-meta strong { display: block; }
.category-featured-meta small { color: #7f8a9a; font-size: 8px; }
.category-featured-meta strong { margin-top: 4px; color: #fff; font-size: 10px; }
.category-featured-meta > a { margin-top: 18px; color: #fff; font-size: 10px; font-weight: 800; }
.category-list-head { display: flex; align-items: end; justify-content: space-between; margin-top: 56px; padding-bottom: 18px; border-bottom: 2px solid #111827; }
.category-list-head span { color: #c62828; font-size: 9px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.category-list-head h2 { margin-top: 6px; font-size: 27px; letter-spacing: -.035em; }
.category-list-head > small { color: #8b939e; font-size: 9px; }
.category-article { position: relative; display: grid; grid-template-columns: 42px minmax(0,1fr) 170px 60px 18px; align-items: center; gap: 18px; min-height: 116px; padding: 18px 12px; border-bottom: 1px solid #d8dce0; color: #111827; transition: padding .2s, background .2s; }
.category-article:hover { padding-left: 20px; background: #fff; }
.category-article::before { content: ""; position: absolute; top: 12px; bottom: 12px; left: 0; width: 3px; background: #d32f2f; transform: scaleY(0); transition: .2s; }
.category-article:hover::before { transform: scaleY(1); }
.category-article-index { color: #a0a6af; font-size: 9px; font-weight: 800; }
.category-article-copy small,.category-article-copy strong,.category-article-copy em { display: block; }
.category-article-copy small { color: #c62828; font-size: 8px; font-weight: 800; text-transform: uppercase; }
.category-article-copy strong { margin-top: 6px; font-size: 14px; }
.category-article-copy em { margin-top: 6px; color: #7b8490; font-size: 10px; font-style: normal; }
.category-article-publisher { padding-left: 16px; border-left: 1px solid #e0e3e6; }
.category-article-publisher strong,.category-article-publisher small { display: block; }
.category-article-publisher strong { color: #495260; font-size: 9px; }
.category-article-publisher small { margin-top: 6px; color: #8c949f; font-size: 8px; }
.category-article > b { color: #697382; font-size: 9px; text-align: center; }
.category-article > i { color: #a0a6af; font-style: normal; }
.category-article[hidden] { display: none; }
.category-sidebar { position: sticky; top: 105px; }
.category-sidebar > section { padding: 25px; border: 1px solid #d8dce0; border-radius: 10px; background: #fff; }
.category-side-label { color: #818a96; font-size: 9px; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.category-sidebar nav { margin-top: 16px; border-top: 1px solid #e1e4e7; }
.category-sidebar nav a { display: flex; align-items: center; justify-content: space-between; min-height: 50px; border-bottom: 1px solid #e5e7e9; color: #596371; font-size: 11px; }
.category-sidebar nav a.active,.category-sidebar nav a:hover { color: #c62828; }
.category-sidebar nav b { color: #9ba2ac; font-size: 9px; }
.category-support { margin-top: 16px; color: #fff; background: #d32f2f !important; }
.category-support > span { color: #ffd0d0; font-size: 8px; font-weight: 800; text-transform: uppercase; }
.category-support h3 { margin-top: 9px; color: #fff; font-size: 20px; }
.category-support p { margin-top: 9px; color: rgba(255,255,255,.78); font-size: 10px; }
.category-support a { display: inline-block; margin-top: 20px; padding-bottom: 4px; border-bottom: 1px solid rgba(255,255,255,.5); color: #fff; font-size: 10px; font-weight: 800; }
@media(max-width:950px) {
  .category-heading-grid { grid-template-columns: 1fr; gap: 20px; }
  .category-layout { grid-template-columns: 1fr; }
  .category-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
  .category-support { margin-top: 0; }
}
@media(max-width:680px) {
  .category-page-shell { width: min(calc(100% - 28px), 1440px); }
  .category-page-head { padding: 38px 0 32px; }
  .category-heading-grid { margin-top: 28px; }
  .category-content { padding: 45px 0 72px; }
  .category-toolbar { align-items: stretch; flex-direction: column; }
  .category-featured { grid-template-columns: 1fr; padding: 27px 22px; }
  .category-featured-meta { padding: 20px 0 0; border-top: 1px solid rgba(255,255,255,.14); border-left: 0; }
  .category-article { grid-template-columns: 28px 1fr 18px; gap: 12px; padding: 20px 4px; }
  .category-article-publisher { grid-column: 2; padding: 10px 0 0; border-top: 1px solid #e0e3e6; border-left: 0; }
  .category-article > b { grid-column: 2; text-align: left; }
  .category-article > i { grid-column: 3; grid-row: 1; }
  .category-sidebar { grid-template-columns: 1fr; }
}

/* Global loading skeleton */
.site-skeleton {
  position: fixed;
  z-index: 99999;
  inset: 0;
  overflow: hidden;
  padding: 0;
  background: #f7f8f9;
  opacity: 0;
  visibility: hidden;
  transition: opacity .32s ease, visibility .32s ease;
}
.office-status.is-closed .dot {
  background: #d32f2f;
  box-shadow: 0 0 0 5px #fee2e2;
}
.footer-open.office-status.is-closed .dot::after {
  border-color: rgba(211,47,47,.55);
}
.footer-open.office-status.is-closed strong {
  color: #c62828;
}
.footer-open.office-status.is-closed span {
  color: #9f5656;
}
.site-skeleton.is-visible { opacity: 1; visibility: visible; }
.site-skeleton.is-leaving { opacity: 0; visibility: hidden; }
.site-skeleton * { box-sizing: border-box; }
.skeleton-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 2.3vw, 42px);
  height: 94px;
  padding: 0 clamp(28px, 4.5vw, 92px);
  border-bottom: 1px solid #e4e7ea;
}
.skeleton-nav i { width: 205px; height: 46px; margin-right: auto; border-radius: 8px; }
.skeleton-nav span { width: 86px; height: 14px; border-radius: 4px; }
.skeleton-nav b { width: 142px; height: 48px; border-radius: 8px; }
.skeleton-nav b:first-of-type { width: 156px; }
.skeleton-page {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  min-height: min(650px, calc(100vh - 180px));
  width: min(calc(100% - 40px), 1380px);
  margin: 42px auto 0;
  overflow: hidden;
  border: 1px solid #e1e4e7;
  border-radius: 14px;
  background: #fff;
}
.skeleton-copy { display: flex; flex-direction: column; justify-content: center; padding: 11%; }
.skeleton-copy small { width: 112px; height: 12px; margin-bottom: 28px; border-radius: 4px; }
.skeleton-copy h2 { width: 88%; height: 48px; margin: 0 0 11px; border-radius: 7px; }
.skeleton-copy h2:nth-of-type(2) { width: 64%; margin-bottom: 30px; }
.skeleton-copy p { width: 92%; height: 14px; margin: 0 0 10px; border-radius: 4px; }
.skeleton-copy p:nth-of-type(2) { width: 70%; margin-bottom: 32px; }
.skeleton-copy button { width: 154px; height: 48px; border: 0; border-radius: 7px; }
.skeleton-visual { border-left: 1px solid #e4e7ea; }
.skeleton-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; width: min(calc(100% - 40px), 1380px); margin: 18px auto 0; }
.skeleton-strip span { height: 88px; border: 1px solid #e4e7ea; border-radius: 10px; background: #fff; }
.skeleton-nav i,
.skeleton-nav span,
.skeleton-nav b,
.skeleton-copy small,
.skeleton-copy h2,
.skeleton-copy p,
.skeleton-copy button,
.skeleton-visual {
  position: relative;
  overflow: hidden;
  background: #e8ebee;
}
.skeleton-nav i::after,
.skeleton-nav span::after,
.skeleton-nav b::after,
.skeleton-copy small::after,
.skeleton-copy h2::after,
.skeleton-copy p::after,
.skeleton-copy button::after,
.skeleton-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.72), transparent);
  animation: skeleton-shimmer 1.35s infinite;
}
@keyframes skeleton-shimmer { to { transform: translateX(100%); } }

/* Page-specific skeleton compositions */
.skeleton-home .skeleton-page {
  width: 100%;
  min-height: clamp(620px, 68vh, 700px);
  margin-top: 0;
  border-right: 0;
  border-left: 0;
  border-radius: 0;
}
.skeleton-home .skeleton-strip { width: min(calc(100% - 64px), 1480px); margin-top: 28px; }
.skeleton-products .skeleton-page,
.skeleton-campaigns .skeleton-page,
.skeleton-forum .skeleton-page {
  grid-template-columns: 1fr;
  min-height: 270px;
  border-radius: 0;
}
.skeleton-products .skeleton-copy,
.skeleton-campaigns .skeleton-copy,
.skeleton-forum .skeleton-copy {
  justify-content: center;
  max-width: 980px;
  min-height: 270px;
  padding: 42px 54px;
}
.skeleton-products .skeleton-copy h2,
.skeleton-campaigns .skeleton-copy h2,
.skeleton-forum .skeleton-copy h2 { width: 54%; height: 38px; }
.skeleton-products .skeleton-copy h2:nth-of-type(2),
.skeleton-campaigns .skeleton-copy h2:nth-of-type(2),
.skeleton-forum .skeleton-copy h2:nth-of-type(2) { width: 36%; margin-bottom: 24px; }
.skeleton-products .skeleton-visual,
.skeleton-campaigns .skeleton-visual,
.skeleton-forum .skeleton-visual { display: none; }
.skeleton-products .skeleton-strip {
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.skeleton-products .skeleton-strip span {
  height: 310px;
  border-radius: 12px;
  background:
    linear-gradient(#e7eaed 0 0) 22px 190px / 62% 18px no-repeat,
    linear-gradient(#edf0f2 0 0) 22px 224px / 82% 11px no-repeat,
    linear-gradient(#edf0f2 0 0) 22px 248px / 46% 11px no-repeat,
    #fff;
}
.skeleton-campaigns .skeleton-strip {
  grid-template-columns: 1.25fr 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}
.skeleton-campaigns .skeleton-strip span { height: 250px; border-radius: 10px; }
.skeleton-campaigns .skeleton-strip span:first-child { border-top: 5px solid #e6a5a5; }
.skeleton-forum .skeleton-strip {
  display: block;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid #e1e4e7;
  border-radius: 10px;
  background: #fff;
}
.skeleton-forum .skeleton-strip span {
  display: block;
  height: 92px;
  border: 0;
  border-bottom: 1px solid #e4e7ea;
  border-radius: 0;
  background:
    linear-gradient(#e6e9ec 0 0) 26px 27px / 34% 14px no-repeat,
    linear-gradient(#eef0f2 0 0) 26px 54px / 58% 10px no-repeat,
    #fff;
}
.skeleton-forum .skeleton-strip span:last-child { border-bottom: 0; }
.skeleton-contact .skeleton-page {
  grid-template-columns: .9fr 1.1fr;
  min-height: 690px;
  margin-top: 30px;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.skeleton-contact .skeleton-copy {
  justify-content: flex-start;
  margin-right: 42px;
  padding: 42px 36px;
  border: 1px solid #e1e4e7;
  border-radius: 12px;
  background: #fff;
}
.skeleton-contact .skeleton-copy small { margin-bottom: 22px; }
.skeleton-contact .skeleton-copy h2 { width: 70%; height: 32px; }
.skeleton-contact .skeleton-copy h2:nth-of-type(2) { width: 52%; margin-bottom: 36px; }
.skeleton-contact .skeleton-copy p {
  width: 100%;
  height: 52px;
  margin-bottom: 18px;
  border: 1px solid #e1e4e7;
  border-radius: 8px;
  background: #f0f2f4;
}
.skeleton-contact .skeleton-copy button { width: 100%; margin-top: 18px; }
.skeleton-contact .skeleton-visual {
  min-height: 690px;
  border: 1px solid #e1e4e7;
  background-color: #dfe4e7;
  background-image:
    linear-gradient(rgba(255,255,255,.34) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.34) 1px, transparent 1px);
  background-size: 38px 38px;
}
.skeleton-contact .skeleton-strip { display: none; }
@media(max-width:760px) {
  .site-skeleton { padding-inline: 0; }
  .skeleton-nav { height: 76px; padding-inline: 18px; }
  .skeleton-nav span { display: none; }
  .skeleton-nav i { width: 150px; height: 40px; }
  .skeleton-nav b { width: 46px; height: 42px; }
  .skeleton-page { grid-template-columns: 1fr; width: calc(100% - 28px); min-height: calc(100vh - 110px); margin-top: 18px; }
  .skeleton-home .skeleton-page { width: 100%; margin-top: 0; }
  .skeleton-copy { min-height: 48vh; padding: 32px 24px; }
  .skeleton-copy h2 { height: 38px; }
  .skeleton-visual { min-height: 35vh; border-top: 1px solid #e4e7ea; border-left: 0; }
  .skeleton-strip { display: none; }
  .skeleton-products .skeleton-page,
  .skeleton-campaigns .skeleton-page,
  .skeleton-forum .skeleton-page { min-height: 240px; }
  .skeleton-products .skeleton-copy,
  .skeleton-campaigns .skeleton-copy,
  .skeleton-forum .skeleton-copy { min-height: 240px; padding: 32px 24px; }
  .skeleton-contact .skeleton-page { grid-template-columns: 1fr; min-height: 0; }
  .skeleton-contact .skeleton-copy { min-height: 420px; margin: 0 0 16px; }
  .skeleton-contact .skeleton-visual { min-height: 320px; }
}
@media(min-width:761px) and (max-width:950px) {
  .skeleton-nav span { display: none; }
  .skeleton-nav { height: 82px; padding-inline: 22px; }
  .skeleton-nav i { width: 170px; height: 42px; }
  .skeleton-nav b:first-of-type { width: 118px; }
  .skeleton-nav b:last-of-type { width: 44px; }
}
@media(prefers-reduced-motion:reduce) {
  .site-skeleton *::after { animation: none !important; }
}

/* Contact studio — editorial layout */
.contact-studio {
  padding: 64px 0 90px;
  color: #111827;
  background: #fff;
}
.contact-studio-head { display: none !important; }
.contact-studio-shell { width: min(calc(100% - 64px), 1320px); margin: 0 auto; }
.contact-studio-head {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 360px;
  align-items: end;
  gap: 40px;
  margin-bottom: 54px;
}
.contact-studio-head > span,
.studio-form-head > span {
  color: #c62828;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .11em;
  text-transform: uppercase;
}
.contact-studio-head h2 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: .98;
  letter-spacing: -.06em;
}
.contact-studio-head > p {
  padding-bottom: 3px;
  color: #657080;
  font-size: 13px;
  line-height: 1.75;
}
.contact-studio-main {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  border-top: 0;
  border-bottom: 1px solid #d8dce0;
}
.contact-studio-channels { padding: 54px 64px 54px 0; }
.studio-status { display: flex; align-items: center; gap: 12px; margin-bottom: 39px; }
.studio-status > i { width: 8px; height: 8px; border-radius: 50%; background: #22b45f; box-shadow: 0 0 0 5px rgba(34,180,95,.11); }
.studio-status span,
.studio-status strong { display: block; }
.studio-status strong { margin-bottom: 4px; font-size: 12px; }
.studio-status span { color: #7b8490; font-size: 10px; }
.contact-studio-channels nav { border-top: 1px solid #d8dce0; }
.contact-studio-channels nav a {
  display: grid;
  grid-template-columns: 100px minmax(0, 1fr) 20px;
  align-items: center;
  min-height: 88px;
  border-bottom: 1px solid #d8dce0;
  color: #111827;
  transition: padding .2s ease, color .2s ease;
}
.contact-studio-channels nav a:hover { padding-left: 10px; color: #c62828; }
.contact-studio-channels nav small { color: #8b939e; font-size: 10px; }
.contact-studio-channels nav strong { overflow-wrap: anywhere; font-size: 15px; }
.contact-studio-channels nav a > span { color: #c62828; text-align: right; }
.contact-studio-channels > p { max-width: 430px; margin-top: 27px; color: #77808c; font-size: 11px; line-height: 1.7; }
.contact-studio-form {
  padding: 54px 64px 54px 0;
  border-left: 0;
}
.studio-form-head h3 { margin-top: 10px; font-size: 34px; letter-spacing: -.045em; }
.studio-form-head p { margin-top: 11px; color: #727b88; font-size: 12px; }
.contact-studio-form .field-row { gap: 15px; margin-top: 34px; }
.contact-studio-form .field { margin-bottom: 19px; }
.contact-studio-form .field label { margin-bottom: 8px; color: #3f4855; font-size: 10px; }
.contact-studio-form .field input,
.contact-studio-form .field select,
.contact-studio-form .field textarea {
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid #cfd3d8;
  border-radius: 2px;
  outline: 0;
  color: #111827;
  background: #fafafa;
  font: inherit;
  font-size: 12px;
  transition: border-color .2s, background .2s, box-shadow .2s;
}
.contact-studio-form .field textarea { min-height: 112px; resize: vertical; }
.contact-studio-form .field input:focus,
.contact-studio-form .field select:focus,
.contact-studio-form .field textarea:focus {
  border-color: #c62828;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(198,40,40,.07);
}
.studio-form-action { display: flex; align-items: center; gap: 20px; }
.studio-form-action button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  min-width: 180px;
  min-height: 50px;
  padding: 0 18px;
  border: 0;
  border-radius: 2px;
  color: #fff;
  background: #d32f2f;
  font: inherit;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
  transition: background .2s;
}
.studio-form-action button:hover { background: #b92323; }
.studio-form-action small { max-width: 220px; color: #9299a3; font-size: 8px; line-height: 1.5; }
/* Bootstrap-inspired form treatment */
.contact-studio-form {
  align-self: start;
  margin: 0 64px 0 0;
  padding: 36px;
  border: 1px solid #dee2e6;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 12px 32px rgba(17,24,39,.06);
}
.studio-form-head { padding-bottom: 24px; }
.studio-form-head h3 { font-size: 30px; }
.studio-form-divider {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-top: 20px;
  border-top: 1px solid #e7e9ec;
}
.studio-form-divider span { color: #343a40; font-size: 12px; font-weight: 750; }
.studio-form-divider small { color: #8b939e; font-size: 9px; }
.contact-studio-form .field-row { margin-top: 0; gap: 16px; }
.contact-studio-form .field { margin-bottom: 18px; }
.contact-studio-form .field label {
  margin-bottom: 8px;
  color: #343a40;
  font-size: 12px;
  font-weight: 650;
}
.contact-studio-form .field label b { color: #d32f2f; }
.contact-studio-form .field input,
.contact-studio-form .field select,
.contact-studio-form .field textarea {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  border: 1px solid #ced4da;
  border-radius: 8px;
  color: #212529;
  background-color: #fff;
  font-size: 13px;
}
.contact-studio-form .field input::placeholder,
.contact-studio-form .field textarea::placeholder { color: #adb5bd; }
.contact-studio-form .field input:focus,
.contact-studio-form .field select:focus,
.contact-studio-form .field textarea:focus {
  border-color: #d85b5b;
  box-shadow: 0 0 0 4px rgba(211,47,47,.11);
}
.contact-studio-form .field > small {
  display: block;
  margin-top: 6px;
  color: #8b939e;
  font-size: 9px;
}
.studio-consent {
  display: grid;
  grid-template-columns: 17px 1fr;
  align-items: start;
  gap: 10px;
  margin: 3px 0 22px;
  color: #6c757d;
  font-size: 10px;
  line-height: 1.55;
  cursor: pointer;
}
.studio-consent input { width: 16px; height: 16px; margin: 0; accent-color: #d32f2f; }
.studio-consent a { color: #343a40; text-decoration: underline; text-underline-offset: 2px; }
.studio-form-action { align-items: stretch; flex-direction: column; gap: 10px; }
.studio-form-action button {
  width: 100%;
  min-height: 52px;
  border-radius: 8px;
  font-size: 12px;
}
.studio-form-action small { max-width: none; font-size: 9px; text-align: center; }
.contact-map-panel {
  position: relative;
  display: flex;
  align-self: stretch;
  padding: 0 0 0 64px;
  border-left: 1px solid #d8dce0;
}
.contact-map-info {
  position: absolute;
  z-index: 3;
  top: auto;
  bottom: 22px;
  right: auto;
  left: 82px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  width: min(286px, calc(100% - 118px));
}
.contact-map-info > div,
.contact-map-info > a {
  min-height: 94px;
  padding: 14px 17px;
  border: 1px solid #d8dce0;
  border-radius: 32px;
  color: #111827;
  background: rgba(255,255,255,.94);
  box-shadow: 0 12px 30px rgba(17,24,39,.13);
  backdrop-filter: blur(8px);
  transition: border-color .2s ease, transform .2s ease;
}
.contact-map-info > *:first-child { grid-column: auto; }
.contact-map-info > *:nth-child(3) { border-left: 1px solid #d8dce0; }
.contact-map-info > a:hover { border-color: #e0aaaa; transform: translateY(-2px); }
.contact-map-info small,
.contact-map-info strong,
.contact-map-info span { display: block; }
.contact-map-info small { color: #c62828; font-size: 9px; font-weight: 850; letter-spacing: .07em; text-transform: uppercase; }
.contact-map-info strong { margin-top: 8px; font-size: 14px; }
.contact-map-info span { margin-top: 5px; color: #818a96; font-size: 8px; line-height: 1.4; }
.contact-map-info a:hover strong { color: #c62828; }
.contact-map-frame {
  position: relative;
  flex: 1;
  height: auto;
  min-height: 650px;
  margin-top: 0;
  overflow: hidden;
  border: 1px solid #d8dce0;
  background: #e7e8e9;
}
.contact-map-frame iframe { width: 100%; height: 100%; border: 0; filter: grayscale(.15) contrast(.95); }
.contact-map-frame > a {
  position: absolute;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  min-height: 40px;
  padding: 0 14px;
  color: #fff;
  background: #111827;
  font-size: 10px;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(17,24,39,.18);
}
.contact-map-frame > a span { color: #ff7575; }
.contact-studio-office {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid #d8dce0;
}
.contact-studio-office > div,
.contact-studio-office > a {
  position: relative;
  min-height: 135px;
  padding: 30px 34px;
  color: #111827;
}
.contact-studio-office > * + * { border-left: 1px solid #d8dce0; }
.contact-studio-office small,
.contact-studio-office strong,
.contact-studio-office span { display: block; }
.contact-studio-office small { color: #c62828; font-size: 9px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.contact-studio-office strong { margin-top: 10px; font-size: 15px; }
.contact-studio-office span { margin-top: 7px; color: #818995; font-size: 10px; }
.contact-studio-office > a span { position: absolute; top: 29px; right: 32px; margin: 0; color: #c62828; font-size: 15px; }
.contact-studio-office > a:hover strong { color: #c62828; }
@media(max-width:960px) {
  .contact-studio-head { grid-template-columns: 1fr; gap: 16px; }
  .contact-studio-main { grid-template-columns: 1fr; }
  .contact-studio-channels { padding-right: 0; }
  .contact-studio-form { margin: 0 0 48px; padding: 34px; border: 1px solid #dee2e6; }
  .contact-map-panel { display: block; padding: 48px 0 0; border-top: 1px solid #d8dce0; border-left: 0; }
  .contact-map-info { top: auto; right: auto; bottom: 22px; left: 18px; width: min(286px, calc(100% - 36px)); }
}
@media(max-width:680px) {
  .contact-studio { padding: 42px 0 72px; }
  .contact-studio-shell { width: min(calc(100% - 28px), 1320px); }
  .contact-studio-channels nav a { grid-template-columns: 76px 1fr 20px; }
  .contact-studio-form .field-row { grid-template-columns: 1fr; }
  .contact-studio-form { margin: 0 0 38px; padding: 25px 20px; }
  .contact-map-info { grid-template-columns: 1fr; }
  .contact-map-info { top: auto; right: 14px; bottom: 18px; left: 14px; width: auto; gap: 7px; }
  .contact-map-info > *:first-child { grid-column: auto; }
  .contact-map-info > *:nth-child(3) { border-left: 0; }
  .contact-map-info > div,
  .contact-map-info > a { min-height: 92px; padding: 13px 15px; }
  .contact-map-frame { height: 620px; min-height: 620px; }
  .studio-form-action { align-items: flex-start; flex-direction: column; }
  .contact-studio-office { grid-template-columns: 1fr; }
  .contact-studio-office > * + * { border-top: 1px solid #d8dce0; border-left: 0; }
}

/* Readability and publication metadata */
.cf-search input { font-size: 15px; }
.cf-search button,
.cf-new-topic,
.cf-readonly { font-size: 12px; }
.cf-board-head > div:first-child > span,
.cf-topics header span { font-size: 10px; }
.cf-board-head h2,
.cf-topics header h2 { font-size: 27px; }
.cf-column-labels { font-size: 10px; }
.cf-category-copy > strong { font-size: 20px; }
.cf-category-copy > small { font-size: 16px; line-height: 1.55; }
.cf-category-copy > em b { font-size: 10px; }
.cf-topic-total strong { font-size: 17px; }
.cf-topic-total small { font-size: 10px; }
.cf-last {
  display: block;
  grid-template-columns: none;
  padding-left: 18px;
  border-left: 1px solid #e3e5e8;
}
.cf-last > b { display: none; }
.cf-last span strong { font-size: 14px; white-space: normal; }
.cf-last span small { margin-top: 7px; color: #7f8792; font-size: 14px; }
.cf-topic-row,
.cf-topics a.cf-topic-row {
  grid-template-columns: minmax(0, 1fr) 190px 92px;
  gap: 28px;
  min-height: 112px;
}
.cf-topic-row > span:first-child small,
.cf-topic-row > span:first-child strong,
.cf-topic-row > span:first-child em { display: block; }
.cf-topic-row > span:first-child small { color: #d32f2f; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.cf-status {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  margin-left: 8px;
  padding: 0 7px;
  border-radius: 4px;
  font-size: 8px;
  font-style: normal;
  font-weight: 850;
  letter-spacing: .03em;
  vertical-align: middle;
}
.cf-status.important { color: #a51d1d; background: #fee7e5; }
.cf-status.new { color: #166534; background: #e3f5e9; }
.cf-status.solved { color: #36526f; background: #e8eef4; }
.cf-topic-row > span:first-child strong { margin-top: 7px; font-size: 15px; line-height: 1.4; }
.cf-topic-row > span:first-child em { margin-top: 7px; color: #7a8390; font-size: 11px; font-style: normal; }
.cf-published {
  padding-left: 20px;
  border-left: 1px solid #e3e5e8;
}
.cf-published strong,
.cf-published small { display: block; }
.cf-published strong { color: #374151; font-size: 11px; line-height: 1.4; }
.cf-published small { margin-top: 7px; color: #858e9a; font-size: 10px; }
.cf-topic-row > b { color: #687281; font-size: 10px; text-align: right; }
.cf-topic-row > i { display: none; }
.cf-welcome h3 { font-size: 27px; }
.cf-welcome p { font-size: 13px; }
.cf-welcome > a { font-size: 12px; }
.cf-side-panel h3 { font-size: 16px; }
.cf-tags a,
.cf-publish-note li { font-size: 11px; }
@media(max-width:1100px) {
  .cf-grid { grid-template-columns: 1fr; }
  .cf-sidebar { position: static; display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 16px; }
  .cf-side-panel { margin-top: 0; }
}
@media(max-width:800px) {
  .community-forum { padding: 48px 0 78px; }
  .cf-shell { width: min(calc(100% - 28px), 1480px); }
  .cf-toolbar { flex-direction: column; }
  .cf-readonly { justify-content: center; }
  .cf-category { grid-template-columns: 44px minmax(0, 1fr) 55px; }
  .cf-last,
  .cf-column-labels { display: none; }
  .cf-board-head { grid-template-columns: 1fr; }
  .cf-sidebar { grid-template-columns: 1fr; }
}
@media(max-width:560px) {
  .cf-search { grid-template-columns: 38px 1fr; }
  .cf-search button { grid-column: 1 / -1; }
  .cf-category { grid-template-columns: 38px 1fr; padding: 18px; }
  .cf-topic-total { display: none; }
  .cf-topic-row,
  .cf-topics a.cf-topic-row { grid-template-columns: 1fr; gap: 14px; padding: 20px 18px; }
  .cf-published { padding: 12px 0 0; border-top: 1px solid #e3e5e8; border-left: 0; }
  .cf-topic-row > b { display: block; text-align: left; }
}

/* Forum FAQ — technical archive style */
.forum-faq {
  position: relative;
  padding: 104px 0 112px;
  background: #fff;
  border-top: 1px solid #e1e3e6;
}
.forum-faq::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #111827;
}
.forum-faq-grid {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 100px;
  width: min(calc(100% - 64px), 1300px);
}
.forum-faq-intro { align-self: start; }
.forum-faq .section-head { display: block; margin: 0; }
.forum-faq .section-head .eyebrow { color: #d32f2f; }
.forum-faq .section-head h2 {
  margin-top: 13px;
  font-size: 36px;
  line-height: 1.12;
  letter-spacing: -.045em;
}
.forum-faq .section-head p {
  max-width: 300px;
  margin-top: 19px;
  color: #687281;
  font-size: 13px;
  line-height: 1.75;
}
.forum-faq .section-head a {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
  padding-bottom: 5px;
  border-bottom: 1px solid #aeb4bc;
  color: #303947;
  font-size: 11px;
  font-weight: 800;
}
.forum-faq .section-head a b { color: #d32f2f; }
.forum-faq-list { border-top: 2px solid #111827; }
.forum-faq .accordion-item {
  position: relative;
  border-bottom: 1px solid #d9dde1;
  background: transparent;
}
.forum-faq .accordion-item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: -1px;
  left: 0;
  width: 3px;
  background: #d32f2f;
  transform: scaleY(0);
  transition: transform .22s ease;
}
.forum-faq .accordion-item:hover::before,
.forum-faq .accordion-item.open::before { transform: scaleY(1); }
.forum-faq .accordion-btn {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 38px;
  align-items: center;
  gap: 18px;
  min-height: 94px;
  padding: 22px 12px;
  color: #111827;
  font-size: 16px;
  line-height: 1.45;
  transition: padding .2s ease, background .2s ease;
}
.forum-faq .accordion-btn:hover { padding-left: 22px; background: #fafafa; }
.forum-faq .accordion-btn > b {
  color: #a0a6af;
  font-size: 10px;
  letter-spacing: .06em;
}
.forum-faq .accordion-btn > span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid #d5d9de;
  border-radius: 6px;
  color: #626c79;
  background: #fff;
  font-size: 18px;
  font-weight: 400;
  transition: .22s ease;
}
.forum-faq .accordion-item.open .accordion-btn { color: #111827; }
.forum-faq .accordion-item.open .accordion-btn > span {
  border-color: #d32f2f;
  color: #fff;
  background: #d32f2f;
  transform: rotate(45deg);
}
.forum-faq .accordion-content > div { padding-left: 78px; }
.forum-faq .accordion-content p {
  max-width: 720px;
  margin: 0;
  padding: 0 20px 30px 0;
  color: #626c79;
  font-size: 14px;
  line-height: 1.75;
}
@media(max-width:900px) {
  .forum-faq-grid { grid-template-columns: 1fr; gap: 50px; width: min(calc(100% - 40px), 1300px); }
  .forum-faq .section-head p { max-width: 600px; }
}
@media(max-width:600px) {
  .forum-faq { padding: 76px 0 82px; }
  .forum-faq-grid { width: min(calc(100% - 28px), 1300px); }
  .forum-faq .accordion-btn { grid-template-columns: 30px 1fr 32px; gap: 10px; min-height: 88px; padding-inline: 4px; font-size: 14px; }
  .forum-faq .accordion-content > div { padding-left: 40px; }
}

