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

:root {
  color-scheme: light;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #111;
  background: #f4f4f4;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
}

.site-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

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

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  background: #070707;
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-nav {
  display: grid;
  grid-template-columns: 1fr auto auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: 72px;
}

.site-nav-left {
  display: contents;
}

.site-nav-logo {
  justify-self: start;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-nav-left .nav {
  justify-self: center;
}

.site-nav-right {
  justify-self: end;
}

.nav-search-btn {
  justify-self: end;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0.75;
  transition: opacity 0.2s;
  padding: 4px;
  text-decoration: none;
}

.nav-search-btn:hover {
  opacity: 1;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav li {
  margin: 0;
}

.nav a {
  position: relative;
  display: inline-flex;
  padding: 8px 0;
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  background: #96BF48;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.24s ease;
}

.nav a:hover,
.nav a:focus-visible {
  color: #96BF48;
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.hero {
  padding: 80px 0 64px;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  gap: 48px;
}

.hero.hero--split .hero-inner {
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  justify-items: start;
}

.hero-copy {
  text-align: center;
}

.hero:not(.hero--split) .hero-copy {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero.hero--split .hero-copy {
  text-align: left;
}

.hero-copy h1 {
  margin: 0 0 24px;
  font-size: clamp(1.9rem, 6vw, 4.2rem);
  line-height: 1.08;
}

.h1-nowrap {
  white-space: nowrap;
}

.hero-copy p {
  margin: 0 auto 32px;
  font-size: 1.15rem;
  max-width: 680px;
  line-height: 1.8;
  color: #444;
}

.hero-copy strong {
  color: #96BF48;
  font-weight: 700;
}

.hero-cta {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  background: #111;
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.12);
  transition: transform 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.hero-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.2) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform 0.5s ease;
}

.hero-cta:hover,
.hero-cta:focus-visible {
  transform: translateY(-3px);
  background: #222;
  box-shadow: 0 18px 42px rgba(17, 17, 17, 0.18);
}

.hero-cta:hover::before,
.hero-cta:focus-visible::before {
  transform: translateX(120%);
}

.hero-cta:active {
  transform: translateY(-1px) scale(0.99);
}

.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-visual img {
  border-radius: 18px;
  min-width: 280px;
  max-width: 100%;
  box-shadow: 0 40px 120px rgba(17, 17, 17, 0.14);
}

.homepage-section {
  padding: 64px 0;
}

.post-hero {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  padding-top: 64px;
  padding-bottom: 32px;
  display: flex;
  justify-content: center;
}

.post-hero .container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding-left: 0;
  padding-right: 0;
}

.post-hero .hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  text-align: center;
  width: 100%;
}

.post-hero .hero-copy {
  text-align: center;
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  justify-self: center;
}

.post-hero .hero-copy p {
  margin-left: auto;
  margin-right: auto;
}

.post-hero .eyebrow {
  margin: 0 0 18px;
  color: #96BF48;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  color: #555;
  font-size: 0.95rem;
  margin-top: 20px;
}

.post-content {
  max-width: 860px;
  margin: 0 auto;
  padding-top: 24px;
}

.post-content h2[id],
.post-content h3[id] {
  scroll-margin-top: 96px;
}

.post-toc {
  margin: 32px 0 44px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 12px;
  box-shadow: 0 4px 28px rgba(15, 15, 15, 0.06);
  overflow: hidden;
}

.post-toc summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 24px;
  cursor: pointer;
  list-style: none;
  margin: 0;
  font-size: 0.72rem;
  line-height: 1.2;
  color: #96BF48;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  user-select: none;
  transition: background 0.15s ease;
}

.post-toc summary:hover {
  background: #fafafa;
}

.post-toc[open] summary {
  border-bottom: 1px solid rgba(17, 17, 17, 0.07);
}

.post-toc summary::-webkit-details-marker {
  display: none;
}

.post-toc summary::after {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 18 18' fill='none'%3E%3Cpath d='M4.5 6.75L9 11.25L13.5 6.75' stroke='%23555' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.25s ease;
}

.post-toc[open] summary::after {
  transform: rotate(180deg);
}

.post-toc nav {
  padding: 10px 16px 14px;
}

.post-toc ol {
  display: grid;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: toc;
}

.post-toc a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 9px 12px;
  border-radius: 8px;
  border-left: 2px solid transparent;
  color: #333;
  font-weight: 600;
  font-size: 0.97rem;
  line-height: 1.35;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, padding-left 0.18s ease;
}

.post-toc a::before {
  counter-increment: toc;
  content: counter(toc, decimal-leading-zero);
  flex: 0 0 auto;
  font-size: 0.72rem;
  font-weight: 800;
  color: #96BF48;
  letter-spacing: 0.04em;
}

.post-toc a:hover {
  background: rgba(150, 191, 72, 0.08);
  color: #111;
  border-left-color: #96BF48;
  padding-left: 16px;
}

.post-content h2,
.post-content h3 {
  margin: 2.8rem 0 1rem;
  line-height: 1.2;
}

.post-content p,
.post-content li {
  color: #3d3d3d;
  line-height: 1.8;
  font-size: 1.03rem;
}

.post-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.8rem 0;
}

.post-content th,
.post-content td {
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.post-content ul,
.post-content ol {
  margin: 1rem 0 1rem 1.4rem;
}

.related-posts {
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.related-posts h3 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #999;
  margin: 0 0 20px;
}

.related-posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.related-post-card {
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 12px;
  padding: 20px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
  position: relative;
}

.related-post-card:hover {
  border-color: rgba(17, 17, 17, 0.18);
  box-shadow: 0 8px 28px rgba(15, 15, 15, 0.07);
  transform: translateY(-2px);
}

.related-post-card a {
  color: #111;
  font-weight: 700;
  font-size: 0.97rem;
  line-height: 1.4;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}

.related-post-card a::after {
  content: "→";
  font-size: 1rem;
  color: #bbb;
  flex-shrink: 0;
  transition: color 0.18s, transform 0.18s;
  margin-top: 1px;
}

.related-post-card:hover a::after {
  color: #111;
  transform: translateX(3px);
}

.related-post-card p {
  margin: 0;
  color: #777;
  font-size: 0.85rem;
  line-height: 1.55;
}

.section-inner h2 {
  margin: 0 0 28px;
  font-size: clamp(2rem, 2.7vw, 3rem);
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.post-card {
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 24px 80px rgba(15, 15, 15, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 90px rgba(15, 15, 15, 0.08);
}

.post-card a {
  display: block;
  padding: 28px;
  color: inherit;
}

.post-card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  background: #f4f4f4;
  border-radius: 999px;
  color: #111;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.post-card h3 {
  margin: 0 0 16px;
  font-size: 1.45rem;
  line-height: 1.2;
}

.post-card p {
  margin: 0 0 22px;
  color: #4a4a4a;
  line-height: 1.75;
}

.post-card-meta {
  color: #777;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
}

.about-services-section {
  padding-top: 56px;
}

.about-services-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.58fr);
  gap: 56px;
  align-items: start;
}

.about-services-copy {
  position: sticky;
  top: 104px;
}

.about-services-copy h2 {
  margin-bottom: 18px;
}

.about-services-copy > p:not(.section-kicker) {
  max-width: 560px;
  margin: 0 0 28px;
  color: #4a4a4a;
  font-size: 1.05rem;
  line-height: 1.78;
}

.about-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.about-service-card {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.about-service-card:hover {
  transform: translateY(-3px);
  border-color: rgba(150, 191, 72, 0.42);
  background: #fbfbfb;
}

.about-service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: auto;
  border-radius: 999px;
  background: #f4f4f4;
  color: #96BF48;
  font-size: 0.8rem;
  font-weight: 800;
}

.about-service-card h3 {
  margin: 34px 0 12px;
  color: #111;
  font-size: 1.35rem;
  line-height: 1.15;
}

.about-service-card p {
  margin: 0;
  color: #4a4a4a;
  font-size: 0.98rem;
  line-height: 1.7;
}

.faq-section {
  padding-top: 56px;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 0.58fr);
  gap: 56px;
  align-items: start;
}

.faq-intro {
  position: sticky;
  top: 104px;
}

.faq-intro h2 {
  margin-bottom: 18px;
}

.faq-intro > p:not(.section-kicker) {
  margin: 0 0 28px;
  max-width: 520px;
  color: #4a4a4a;
  font-size: 1.05rem;
  line-height: 1.75;
}

.faq-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 28px;
  padding: 20px;
  border-radius: 8px;
  background: #111;
  color: #fff;
  transition: transform 0.2s ease, background 0.2s ease;
}

.faq-contact:hover,
.faq-contact:focus-visible {
  transform: translateY(-2px);
  background: #1d1d1d;
}

.faq-contact span {
  color: #cfcfcf;
  font-size: 0.92rem;
}

.faq-contact strong {
  font-size: 1.05rem;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.faq-item[open] {
  border-color: rgba(150, 191, 72, 0.38);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 24px;
  cursor: pointer;
  list-style: none;
  color: #111;
  font-size: 1.08rem;
  font-weight: 800;
  line-height: 1.35;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 999px;
  background: #f4f4f4;
  color: #111;
  font-size: 1.1rem;
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "-";
  background: #96BF48;
}

.faq-item summary:hover,
.faq-item summary:focus-visible {
  background: #fbfbfb;
}

.faq-item p {
  margin: 0;
  padding: 0 24px 24px;
  color: #444;
  font-size: 1.02rem;
  line-height: 1.8;
}

.services-section {
  padding-top: 56px;
}

.services-header {
  max-width: 760px;
  margin-bottom: 34px;
}

.services-footer {
  margin-top: 40px;
}

.services-header h2 {
  margin-bottom: 16px;
}

.services-header p:not(.section-kicker) {
  max-width: 680px;
  margin: 0;
  color: #4a4a4a;
  font-size: 1.05rem;
  line-height: 1.75;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  color: inherit;
}

.service-card:hover,
.service-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(150, 191, 72, 0.42);
  background: #fbfbfb;
}

.service-card:focus-visible {
  outline: 2px solid #96BF48;
  outline-offset: 3px;
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border-radius: 999px;
  background: #f4f4f4;
  color: #96BF48;
  font-weight: 800;
  font-size: 0.82rem;
}

.service-card h3 {
  margin: 0 0 14px;
  color: #111;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.15;
}

.service-card p {
  margin: 0;
  color: #4a4a4a;
  font-size: 1rem;
  line-height: 1.75;
}

.service-pill {
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  padding: 8px 12px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  color: #111;
  font-size: 0.82rem;
  font-weight: 800;
  background: #fff;
}

.service-hero .hero-copy {
  max-width: 980px;
}

.service-page-section {
  padding-top: 48px;
}

.service-page-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.36fr) minmax(0, 0.64fr);
  gap: 56px;
  align-items: start;
}

.service-sidebar {
  position: sticky;
  top: 104px;
  padding: 24px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
}

.service-sidebar h2 {
  margin: 0 0 14px;
  font-size: 1.45rem;
  line-height: 1.2;
}

.service-sidebar p:not(.section-kicker) {
  margin: 0 0 24px;
  color: #4a4a4a;
  line-height: 1.75;
}

.service-page-content {
  min-width: 0;
}

.service-page-content h2 {
  margin: 3rem 0 1rem;
  color: #111;
  font-size: clamp(1.8rem, 2.5vw, 2.45rem);
  line-height: 1.12;
}

.service-page-content > h2:first-child {
  margin-top: 0;
}

.service-page-content p,
.service-page-content li {
  color: #3d3d3d;
  font-size: 1.04rem;
  line-height: 1.85;
}

.answer-card {
  padding: 28px;
  background: #fff;
  border: 1px solid rgba(150, 191, 72, 0.34);
  border-radius: 8px;
}

.answer-card h2 {
  margin-top: 0;
}

.answer-card p {
  margin-bottom: 0;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #96BF48;
}

.process-list {
  display: grid;
  gap: 12px;
  margin-top: 1.2rem;
}

.process-list div {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.process-list div:last-child {
  border-bottom: 1px solid rgba(17, 17, 17, 0.1);
}

.process-list strong {
  color: #111;
}

.process-list span {
  color: #4a4a4a;
  line-height: 1.7;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}

.category-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: #111;
  color: #fff;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 0.2s ease, background 0.2s ease;
}

.category-pill:hover {
  transform: translateY(-1px);
  background: #333;
}

.category-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.category-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 14px;
  padding: 24px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
  color: inherit;
  position: relative;
}

.category-card:hover {
  border-color: rgba(17, 17, 17, 0.16);
  box-shadow: 0 10px 36px rgba(15, 15, 15, 0.08);
  transform: translateY(-2px);
}

.category-card-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: #96BF48;
}

.category-card h3 {
  margin: 0;
  font-size: 1.45rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.category-card h3::after {
  content: "→";
  font-size: 1rem;
  font-weight: 400;
  color: #ccc;
  flex-shrink: 0;
  transition: color 0.2s, transform 0.2s;
}

.category-card:hover h3::after {
  color: #111;
  transform: translateX(4px);
}

.category-card p {
  margin: 0;
  color: #666;
  font-size: 0.88rem;
  line-height: 1.65;
}

.category-footer {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}

.brands-section {
  padding: 72px 0 80px;
  border-top: 1px solid rgba(17, 17, 17, 0.06);
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.brands-header {
  max-width: 780px;
  margin: 0 auto 40px;
  text-align: center;
}

.section-kicker {
  margin: 0 0 10px;
  color: #96BF48;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.brands-header h2 {
  margin-bottom: 0;
}

.brand-carousel {
  width: 100vw;
  position: relative;
  left: 50%;
  margin-left: -50vw;
  overflow: hidden;
  padding: 8px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 10%, #000 90%, transparent 100%);
}

.brand-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: scrollBrands 30s linear infinite;
  will-change: transform;
  font-size: clamp(0.78rem, 1.4vw, 0.9rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #111;
  white-space: nowrap;
}

.brand-carousel:hover .brand-track {
  animation-play-state: paused;
}

.brand-dot {
  color: #96BF48;
  font-size: 1.4em;
  line-height: 1;
  padding: 0 20px;
  user-select: none;
}

@keyframes scrollBrands {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .brand-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    white-space: normal;
    padding: 0 20px;
  }
}

.testimonials {
  display: grid;
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 24px 80px rgba(15, 15, 15, 0.06);
}

.testimonial-text {
  margin: 0 0 24px;
  color: #343434;
  line-height: 1.85;
  font-size: 1rem;
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.testimonial-author {
  font-weight: 700;
}

.testimonial-role {
  color: #555;
}

.testimonial-role a {
  color: #111;
  text-decoration: underline;
}

.cta-section .button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.cta-section .section-inner {
  text-align: center;
}

.cta-copy {
  max-width: 680px;
  margin: -8px auto 32px;
  color: #4a4a4a;
  font-size: 1.08rem;
  line-height: 1.75;
}

.home-faq-section {
  padding-top: 56px;
  border-top: 1px solid rgba(17, 17, 17, 0.06);
}

.hero-cta.outline {
  border: 1px solid #111;
  background: transparent;
  color: #111;
}

.site-footer {
  background: #111;
  color: #eee;
  padding: 28px 0 36px;
}

.site-footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.site-footer .copyright a {
  color: #fff;
}

.site-footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.site-footer-nav a {
  color: #ccc;
}

/* Portfolio featured section */
.portfolio-featured-section .section-inner h2 {
  margin-top: 8px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.portfolio-card {
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
  cursor: default;
}

.portfolio-card:hover {
  transform: translateY(-4px);
  border-color: rgba(150, 191, 72, 0.42);
  box-shadow: 0 20px 60px rgba(15, 15, 15, 0.07);
}

.portfolio-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.portfolio-card-number {
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #96BF48;
}

.portfolio-card-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 12px;
  background: #f4f4f4;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: #555;
  letter-spacing: 0.03em;
}

.portfolio-card-client {
  margin: 0 0 14px;
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.1;
  color: #111;
}

.portfolio-card-desc {
  margin: 0;
  flex: 1;
  color: #4a4a4a;
  font-size: 0.97rem;
  line-height: 1.75;
}

.portfolio-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(17, 17, 17, 0.07);
}

.portfolio-card-service {
  font-size: 0.85rem;
  font-weight: 600;
  color: #777;
  letter-spacing: 0.02em;
}

.portfolio-card-arrow {
  color: #bbb;
  transition: color 0.2s ease, transform 0.2s ease;
}

.portfolio-card:hover .portfolio-card-arrow {
  color: #96BF48;
  transform: translateX(4px);
}

/* ── Article rich components ── */
.post-intro-box {
  background: #f4f4f4;
  border-left: 3px solid #96BF48;
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin-bottom: 32px;
}

.post-intro-box p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.78;
  color: #333;
}

.post-tldr {
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-left: 3px solid #96BF48;
  border-radius: 0 8px 8px 0;
  padding: 20px 24px;
  margin: 0 0 40px;
}

.post-tldr-label {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #96BF48;
  margin-bottom: 12px;
}

.post-callout {
  display: flex;
  gap: 14px;
  background: #f4f4f4;
  border-radius: 8px;
  padding: 16px 20px;
  margin: 28px 0;
  font-size: 0.97rem;
  line-height: 1.7;
}

.post-callout p {
  margin: 0;
}

.post-callout-icon {
  flex: 0 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
}

.post-callout.warning {
  background: #fef9ec;
  border-left: 3px solid #f0c040;
  border-radius: 0 8px 8px 0;
}

.post-callout.success {
  background: #f0f6e8;
  border-left: 3px solid #96BF48;
  border-radius: 0 8px 8px 0;
}

.post-callout.danger {
  background: #fef2f2;
  border-left: 3px solid #dc3545;
  border-radius: 0 8px 8px 0;
}

.post-price-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0 40px;
}

.post-price-card {
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  padding: 24px;
}

.post-price-card.shopify {
  border-top: 3px solid #96BF48;
}

.post-price-card.nuvem {
  border-top: 3px solid #7c5cfc;
}

.post-price-card h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.post-price-card-sub {
  font-size: 0.78rem;
  color: #777;
  margin: 0 0 16px;
  line-height: 1.45;
}

.post-price-plan {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.06);
}

.post-price-plan:last-child {
  border: none;
  padding-bottom: 0;
}

.post-price-plan-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.post-price-plan-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: #222;
}

.post-price-plan-note {
  font-size: 0.75rem;
  color: #888;
}

.post-price-plan-value {
  font-weight: 800;
  color: #111;
  white-space: nowrap;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.badge-green {
  display: inline-block;
  font-size: 0.67rem;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 99px;
  background: rgba(150, 191, 72, 0.15);
  color: #4a7c00;
  vertical-align: middle;
  margin-left: 4px;
}

.badge-red {
  display: inline-block;
  font-size: 0.67rem;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 99px;
  background: rgba(220, 53, 69, 0.1);
  color: #c0392b;
  vertical-align: middle;
  margin-left: 4px;
}

.post-content table .col-label {
  font-weight: 700;
}

.post-content table .col-win {
  color: #3a7a00;
  font-weight: 700;
}

.post-content table .col-lose {
  color: #c0392b;
}

.post-content table .col-tie {
  color: #7f6000;
}

.post-decision-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 28px 0 40px;
}

.post-decision-card {
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  padding: 24px;
}

.post-decision-card.shopify {
  border-top: 3px solid #96BF48;
}

.post-decision-card.nuvem {
  border-top: 3px solid #7c5cfc;
}

.post-decision-card h3 {
  margin: 0 0 14px;
  font-size: 1rem;
  line-height: 1.3;
}

.post-decision-card ul {
  margin: 0 0 0 16px;
}

.post-decision-card li {
  font-size: 0.93rem;
  margin-bottom: 7px;
  color: #333;
}

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

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-services-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-services-copy {
    position: static;
  }

  .faq-intro {
    position: static;
  }

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

  .service-page-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-sidebar {
    position: static;
  }

  .hero-visual {
    justify-content: flex-start;
  }

  .site-nav {
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
  }

  .site-nav-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    order: -1;
  }

  .site-nav-left .nav {
    display: none;
    flex-direction: column;
    gap: 16px;
    text-align: center;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #070707;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .site-nav-left .nav.active {
    display: flex;
  }

  .mobile-menu-toggle {
    display: flex !important;
    order: 1;
  }

  .site-nav-right {
    display: none;
  }
}

/* ===== SUBMENU ===== */
.has-submenu {
  position: relative;
}

.submenu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0 0 0 5px;
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.2s ease;
  vertical-align: middle;
}

.has-submenu:hover .submenu-toggle {
  color: #96BF48;
}

.has-submenu.submenu-open .submenu-toggle {
  color: #96BF48;
  transform: rotate(180deg);
}

.submenu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 260px;
  background: #fff;
  border: 1px solid rgba(17, 17, 17, 0.07);
  border-radius: 14px;
  box-shadow: 0 4px 6px -2px rgba(0,0,0,0.06), 0 16px 40px -4px rgba(0,0,0,0.13);
  padding: 10px 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0s 0.18s;
  z-index: 500;
}

.has-submenu:hover .submenu,
.has-submenu.submenu-open .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}

.submenu li {
  list-style: none;
  margin: 0;
}

.submenu-group-label {
  padding: 8px 18px 4px;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #96BF48;
}

.submenu-divider {
  height: 1px;
  background: rgba(17, 17, 17, 0.07);
  margin: 8px 18px;
}

.submenu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 18px;
  color: #1a1a1a !important;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-transform: none;
  white-space: nowrap;
  transition: background 0.14s ease, color 0.14s ease, padding-left 0.14s ease;
}

.submenu a::after {
  display: none !important;
}

.submenu a:hover,
.submenu a:focus-visible {
  background: #f7f7f5;
  color: #96BF48 !important;
  padding-left: 22px;
}

@media (max-width: 768px) {
  .submenu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    padding: 4px 0;
    margin: 6px 0 4px;
    background: transparent;
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.2s ease, max-height 0.3s ease, visibility 0s 0.3s;
    text-align: center;
    width: 100%;
  }

  .has-submenu.submenu-open .submenu,
  .has-submenu:hover .submenu {
    opacity: 1;
    visibility: visible;
    max-height: 400px;
    transform: none;
    transition-delay: 0s;
  }

  .submenu-group-label {
    color: #96BF48;
    text-align: center;
  }

  .submenu-divider {
    background: rgba(255, 255, 255, 0.1);
    margin: 6px 24px;
  }

  .submenu a {
    color: rgba(255, 255, 255, 0.7) !important;
    padding: 8px 14px;
    font-size: 0.85rem;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .submenu a:hover,
  .submenu a:focus-visible {
    background: transparent;
    color: #96BF48 !important;
    padding-left: 14px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100%, calc(100% - 32px));
  }

  .h1-nowrap {
    white-space: normal;
  }

  .hero {
    padding: 52px 0 44px;
  }

  .hero-copy p {
    font-size: 1rem;
    line-height: 1.7;
  }

  .hero-copy h1 {
    font-size: clamp(1.75rem, 8vw, 2.2rem);
    margin-bottom: 18px;
  }

  .brands-section {
    padding: 56px 0 64px;
  }

  .brands-header {
    margin-bottom: 28px;
  }

  .brand-dot {
    padding: 0 14px;
  }

  .faq-section {
    padding-top: 40px;
  }

  .faq-contact,
  .faq-item summary,
  .faq-item p {
    padding-left: 18px;
    padding-right: 18px;
  }

  .faq-item summary {
    font-size: 1rem;
  }

  .services-section {
    padding-top: 40px;
  }

  .services-header {
    margin-bottom: 24px;
  }

  .service-card {
    min-height: 0;
    padding: 22px;
  }

  .about-services-section {
    padding-top: 40px;
  }

  .about-services-grid {
    grid-template-columns: 1fr;
  }

  .about-service-card {
    min-height: 0;
    padding: 22px;
  }

  .about-service-card h3 {
    margin-top: 28px;
  }

  .service-number {
    margin-bottom: 24px;
  }

  .service-page-section {
    padding-top: 36px;
  }

  .answer-card,
  .service-sidebar {
    padding: 22px;
  }

  .process-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

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

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

  .post-price-grid,
  .post-decision-grid {
    grid-template-columns: 1fr;
  }

  .post-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .post-grid {
    grid-template-columns: 1fr;
  }
}
