:root {
  --wp--preset--color--background: #f5f1e6;
  --wp--preset--color--foreground: #4a3f35;
  --wp--preset--color--card: #fffcf5;
  --wp--preset--color--card-foreground: #4a3f35;
  --wp--preset--color--popover: #fffcf5;
  --wp--preset--color--popover-foreground: #4a3f35;
  --wp--preset--color--primary: #a67c52;
  --wp--preset--color--primary-foreground: #ffffff;
  --wp--preset--color--secondary: #e2d8c3;
  --wp--preset--color--secondary-foreground: #5c4d3f;
  --wp--preset--color--accent: #d4c8aa;
  --wp--preset--color--accent-foreground: #4a3f35;
  --wp--preset--color--muted: #ece5d8;
  --wp--preset--color--muted-foreground: #7d6b56;
  --wp--preset--color--destructive: #b54a35;
  --wp--preset--color--destructive-foreground: #ffffff;
  --wp--preset--color--border: #dbd0ba;
  --wp--preset--color--input: #dbd0ba;
  --wp--preset--color--ring: #a67c52;
  --wp--preset--color--sidebar-background: #ece5d8;
  --wp--preset--color--sidebar-foreground: #4a3f35;
  --theme-radius-sm: 8px;
  --theme-radius-md: 12px;
  --theme-radius-lg: 16px;
  --theme-radius-xl: 20px;
  --theme-shadow-soft: 0 1px 2px rgba(74, 63, 53, 0.05), 0 8px 24px rgba(74, 63, 53, 0.06);
  --theme-shadow-paper: 0 1px 0 rgba(255, 255, 255, 0.7) inset, 0 0 0 1px rgba(166, 124, 82, 0.08);
  --theme-font-body: "Inter", system-ui, sans-serif;
  --theme-font-heading: "Playfair Display", Georgia, serif;
  --theme-container: min(1240px, calc(100vw - 2rem));
  --theme-content: min(760px, calc(100vw - 2rem));
}

html {
  scroll-behavior: smooth;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  background: var(--wp--preset--color--background);
  color: var(--wp--preset--color--foreground);
  font-family: var(--theme-font-body);
  line-height: 1.65;
  background-image:
    radial-gradient(circle at top left, rgba(255, 252, 245, 0.9), transparent 35%),
    radial-gradient(circle at bottom right, rgba(226, 216, 195, 0.35), transparent 30%);
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: var(--wp--preset--color--primary);
  text-decoration: none;
}

a:hover,
a:focus {
  color: #8d6e4c;
}

h1, h2, h3, h4, h5, h6,
.site-title,
.entry-title,
.wp-block-post-title {
  margin: 0 0 0.75rem;
  font-family: var(--theme-font-heading);
  color: var(--wp--preset--color--foreground);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

p, li, label, input, textarea, select, button {
  font-family: var(--theme-font-body);
}

p {
  margin: 0 0 1rem;
}

button,
input[type="button"],
input[type="submit"],
input[type="reset"],
.wp-element-button,
.wp-block-button__link {
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--primary-foreground);
  border: 1px solid var(--wp--preset--color--primary);
  border-radius: var(--theme-radius-sm);
  padding: 0.85rem 1.2rem;
  transition: 0.2s ease;
  cursor: pointer;
}

button:hover,
input[type="button"]:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
.wp-element-button:hover,
.wp-block-button__link:hover {
  background: #8d6e4c;
  border-color: #8d6e4c;
  color: #fff;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="date"],
textarea,
select {
  width: 100%;
  background: var(--wp--preset--color--card);
  color: var(--wp--preset--color--foreground);
  border: 1px solid var(--wp--preset--color--input);
  border-radius: var(--theme-radius-sm);
  padding: 0.85rem 1rem;
  outline: none;
  transition: 0.2s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--wp--preset--color--ring);
  box-shadow: 0 0 0 3px rgba(166, 124, 82, 0.15);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--wp--preset--color--card);
  border: 1px solid var(--wp--preset--color--border);
  border-radius: var(--theme-radius-md);
  overflow: hidden;
}

table th,
table td {
  border-bottom: 1px solid var(--wp--preset--color--border);
  padding: 0.9rem 1rem;
  color: var(--wp--preset--color--foreground);
}

table th {
  background: var(--wp--preset--color--muted);
  font-weight: 600;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: var(--theme-container);
  margin-inline: auto;
}

.container--narrow {
  width: var(--theme-content);
}

.site-section {
  padding: 5rem 0;
}

.site-section--compact {
  padding: 3rem 0 5rem;
}

.site-section--soft {
  background: linear-gradient(180deg, rgba(255, 252, 245, 0.55), rgba(226, 216, 195, 0.3));
}

.site-section--accent {
  background: rgba(226, 216, 195, 0.45);
}

.theme-card,
.widget,
.post-card,
.article-shell,
.cta-banner,
.hero-card,
.faq-item,
.author-box {
  background: var(--wp--preset--color--card);
  color: var(--wp--preset--color--card-foreground);
  border: 1px solid var(--wp--preset--color--border);
  border-radius: var(--theme-radius-lg);
  box-shadow: var(--theme-shadow-soft);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.2rem;
  border-radius: var(--theme-radius-sm);
  border: 1px solid transparent;
  font-weight: 600;
}

.btn-primary {
  background: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--primary-foreground);
}

.btn-secondary {
  background: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--secondary-foreground);
  border-color: var(--wp--preset--color--border);
}

.btn-ghost {
  background: transparent;
  color: var(--wp--preset--color--foreground);
  border-color: var(--wp--preset--color--border);
}

.btn--small {
  padding: 0.75rem 1rem;
}

.btn--block {
  width: 100%;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--wp--preset--color--muted-foreground);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.topbar {
  background: rgba(255, 252, 245, 0.88);
  border-bottom: 1px solid var(--wp--preset--color--border);
}

.topbar__inner,
.site-header__inner,
.site-footer__bottom-inner,
.topbar__meta,
.site-header__actions,
.single-meta,
.footer-brand__contact {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.topbar__inner,
.site-header__inner,
.site-footer__bottom-inner {
  justify-content: space-between;
}

.topbar__message {
  margin: 0;
  font-size: 0.95rem;
  color: var(--wp--preset--color--muted-foreground);
}

.topbar__meta a,
.site-footer__social span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--wp--preset--color--muted-foreground);
  font-size: 0.95rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 252, 245, 0.92);
  border-bottom: 1px solid var(--wp--preset--color--border);
  backdrop-filter: blur(8px);
}

.site-header.is-scrolled {
  box-shadow: var(--theme-shadow-soft);
}

.site-header__inner {
  min-height: 82px;
}

.site-branding__text {
  display: inline-flex;
  flex-direction: column;
  color: var(--wp--preset--color--foreground);
}

.site-branding__title {
  font-family: var(--theme-font-heading);
  font-size: 1.6rem;
  font-weight: 700;
}

.site-branding__tagline {
  color: var(--wp--preset--color--muted-foreground);
  font-size: 0.92rem;
}

.custom-logo {
  width: auto;
  max-height: 52px;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu--primary,
.menu--footer {
  display: flex;
  gap: 1.25rem;
}

.menu--primary a,
.menu--footer a {
  color: var(--wp--preset--color--foreground);
  font-weight: 500;
}

.mobile-nav-toggle {
  display: none;
  padding: 0.65rem;
  background: transparent;
  border: 1px solid var(--wp--preset--color--border);
  color: var(--wp--preset--color--foreground);
}

.mobile-navigation {
  border-top: 1px solid var(--wp--preset--color--border);
  background: var(--wp--preset--color--card);
}

.mobile-navigation__inner {
  padding: 1.25rem 0;
}

.menu--mobile {
  display: grid;
  gap: 0.95rem;
}

.hero-section {
  padding: 5.5rem 0 3.5rem;
}

.hero-grid,
.layout-grid {
  display: grid;
  gap: 2rem;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, 0.8fr);
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  max-width: 12ch;
}

.hero-copy p {
  max-width: 62ch;
  color: var(--wp--preset--color--muted-foreground);
  font-size: 1.05rem;
}

.hero-card,
.article-shell,
.writer-card,
.testimonial-card,
.feature-card,
.process-card,
.stat-card,
.subject-card {
  padding: 1.5rem;
}

.hero-checklist,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero-checklist li,
.footer-links li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  padding: 0.55rem 0;
}

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--wp--preset--color--muted-foreground);
  font-weight: 600;
}

.trust-strip__grid,
.feature-grid,
.subject-grid,
.process-grid,
.post-grid,
.testimonial-grid,
.stats-grid,
.footer-grid {
  display: grid;
  gap: 1.25rem;
}

.trust-strip__grid,
.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid--compact,
.post-grid--three,
.testimonial-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.subject-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.layout-grid--sidebar {
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: start;
}

.feature-card__icon,
.writer-card__icon,
.author-box__icon,
.writer-avatar-fallback {
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--wp--preset--color--muted);
  color: var(--wp--preset--color--primary);
  font-size: 1.4rem;
}

.section-heading {
  max-width: 44rem;
  margin-bottom: 2rem;
}

.section-heading p,
.page-header__description,
.post-card p,
.feature-card p,
.process-card p,
.testimonial-card__quote,
.faq-item__answer,
.empty-state p,
.footer-brand p {
  color: var(--wp--preset--color--muted-foreground);
}

.page-header {
  padding: 4rem 0 2rem;
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  color: var(--wp--preset--color--muted-foreground);
}

.breadcrumbs__item:not(:last-child)::after {
  content: "/";
  margin-left: 0.65rem;
}

.post-card {
  overflow: hidden;
}

.post-card__media img,
.article-media img,
.writer-profile__media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.post-card__content {
  padding: 1.35rem;
}

.post-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 0.8rem;
  color: var(--wp--preset--color--muted-foreground);
  font-size: 0.9rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: var(--wp--preset--color--muted);
  color: var(--wp--preset--color--secondary-foreground);
  font-size: 0.82rem;
  font-weight: 600;
}

.post-card__title a {
  color: var(--wp--preset--color--foreground);
}

.post-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
}

.article-content {
  padding: 0 1.5rem 1.5rem;
}

.article-header {
  padding: 1.5rem 1.5rem 0;
}

.article-content > * + * {
  margin-top: 1rem;
}

.article-content .lead {
  font-size: 1.15rem;
  color: var(--wp--preset--color--foreground);
}

.article-content h2,
.article-content h3,
.article-content h4 {
  margin-top: 1.9rem;
}

.article-content ul,
.article-content ol {
  padding-left: 1.2rem;
}

.article-content li + li {
  margin-top: 0.45rem;
}

.article-content blockquote {
  margin: 1.5rem 0;
  padding: 1.2rem 1.35rem;
  border-left: 4px solid var(--wp--preset--color--primary);
  background: rgba(226, 216, 195, 0.4);
  border-radius: 0 var(--theme-radius-md) var(--theme-radius-md) 0;
}

.article-content .content-checklist,
.article-content .sample-link-list {
  list-style: none;
  padding: 0;
}

.article-content .content-checklist li {
  display: flex;
  gap: 0.65rem;
  padding: 0.55rem 0;
}

.article-content .content-checklist li::before {
  content: "•";
  color: var(--wp--preset--color--primary);
  font-weight: 700;
}

.detail-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 1.5rem;
}

.detail-grid--compact {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-card {
  padding: 1rem 1.1rem;
  background: rgba(255, 252, 245, 0.88);
  border: 1px solid var(--wp--preset--color--border);
  border-radius: var(--theme-radius-md);
  box-shadow: var(--theme-shadow-paper);
}

.detail-card strong {
  display: block;
  margin-top: 0.45rem;
  font-size: 1.05rem;
}

.detail-card__label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: var(--wp--preset--color--muted-foreground);
  font-size: 0.88rem;
  font-weight: 600;
}

.linked-content-block,
.content-note {
  margin: 1.25rem 0 1.5rem;
}

.content-note {
  padding: 1rem 1.15rem;
  border: 1px solid var(--wp--preset--color--border);
  border-radius: var(--theme-radius-md);
  background: rgba(226, 216, 195, 0.25);
}

.sample-link-list {
  display: grid;
  gap: 0.8rem;
}

.sample-link-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--wp--preset--color--border);
  border-radius: var(--theme-radius-md);
  background: rgba(255, 252, 245, 0.82);
  color: var(--wp--preset--color--foreground);
}

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

.content-card {
  padding: 1.1rem 1.2rem;
  background: rgba(255, 252, 245, 0.88);
  border: 1px solid var(--wp--preset--color--border);
  border-radius: var(--theme-radius-md);
}

.content-card h3 {
  margin-bottom: 0.5rem;
}

.single-meta--tight {
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  color: var(--wp--preset--color--muted-foreground);
  font-size: 0.92rem;
}

.writer-profile {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.sidebar {
  background: var(--wp--preset--color--sidebar-background);
  color: var(--wp--preset--color--sidebar-foreground);
  border-radius: var(--theme-radius-lg);
  padding: 1rem;
}

.widget + .widget {
  margin-top: 1rem;
}

.widget-title {
  font-size: 1.2rem;
}

.search-form-inline__wrap {
  display: flex;
  gap: 0.85rem;
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  color: var(--wp--preset--color--foreground);
  border: 0;
  padding: 1.25rem 1.35rem;
}

.faq-item__answer {
  padding: 0 1.35rem 1.25rem;
}

.faq-item.is-open .faq-item__question i {
  transform: rotate(45deg);
}

.cta-banner {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
}

.empty-state {
  padding: 2rem;
  text-align: center;
}

.footer-grid {
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  padding: 4rem 0 2rem;
}

.site-footer__bottom {
  border-top: 1px solid var(--wp--preset--color--border);
  padding: 1.15rem 0 2rem;
}

.site-footer__bottom p {
  margin: 0;
  color: var(--wp--preset--color--muted-foreground);
}

.author-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.theme-pagination {
  margin-top: 2rem;
}

@media (max-width: 980px) {
  .topbar__inner,
  .site-footer__bottom-inner,
  .cta-banner,
  .writer-profile,
  .search-form-inline__wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .primary-nav {
    display: none;
  }

  .mobile-nav-toggle {
    display: inline-flex;
  }

  .hero-grid,
  .layout-grid--sidebar,
  .detail-grid,
  .detail-grid--compact,
  .content-card-grid,
  .feature-grid,
  .feature-grid--compact,
  .post-grid,
  .post-grid--three,
  .testimonial-grid,
  .process-grid,
  .subject-grid,
  .trust-strip__grid,
  .stats-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .site-header__actions .btn {
    display: none;
  }

  .site-main--front-page .site-section {
    padding: 4rem 0;
  }
}

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

  .hero-section {
    padding-top: 4rem;
  }

  .hero-copy h1 {
    font-size: clamp(2.4rem, 11vw, 3.2rem);
  }

  .site-section,
  .page-header {
    padding-left: 0;
    padding-right: 0;
  }
}

/* --- Mindblowing Footer Additions --- */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--wp--preset--color--card);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(166, 124, 82, 0.2);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--wp--preset--color--primary), var(--wp--preset--color--accent), transparent);
  opacity: 0.6;
}

.footer-grid .widget-title {
  color: var(--wp--preset--color--primary);
  font-family: var(--theme-font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  position: relative;
  display: inline-block;
}

.footer-grid .widget-title::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--wp--preset--color--accent);
  transition: width 0.3s ease;
}

.footer-column:hover .widget-title::after {
  width: 100%;
}

.footer-links a {
  position: relative;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--wp--preset--color--primary);
  transform: translateX(5px);
}

.footer-brand__title {
  font-family: var(--theme-font-heading);
  font-size: 1.8rem;
  background: linear-gradient(135deg, var(--wp--preset--color--foreground), var(--wp--preset--color--primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 1rem;
}

/* Redesigned Statistics Sections */
.trust-strip {
  padding: 1.5rem 0;
  margin-top: -3.5rem;
  position: relative;
  z-index: 10;
}

.trust-strip__grid {
  display: flex !important; /* Override layout grid */
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.trust-strip__pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 1.25rem;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: var(--theme-glass);
  -webkit-backdrop-filter: var(--theme-glass);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 100px;
  box-shadow: 0 4px 6px -1px rgba(15, 23, 42, 0.05);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.trust-strip__pill:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.8);
  border-color: var(--wp--preset--color--accent);
  box-shadow: 0 10px 15px -3px rgba(15, 23, 42, 0.1);
}

.trust-strip__icon {
  font-size: 1.2rem;
  color: var(--wp--preset--color--accent);
}

.trust-strip__content {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.trust-strip__value {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--wp--preset--color--primary);
}

.trust-strip__label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--wp--preset--color--muted-foreground);
  text-transform: capitalize;
}

/* Stats Counter (Bottom Section) */
.stats-counter {
  background: linear-gradient(to bottom, transparent, rgba(217, 119, 6, 0.02));
  padding: 8rem 0;
}

.stats-counter__grid {
  display: grid !important; /* Override layout grid */
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;
  gap: 2rem;
}

.stats-counter__card {
  text-align: center;
  padding: 3rem 2rem;
  background: white;
  border-radius: var(--theme-radius-xl);
  border: 1px solid var(--wp--preset--color--border);
  box-shadow: var(--theme-shadow-soft);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.stats-counter__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--wp--preset--color--accent), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.stats-counter__card:hover {
  transform: translateY(-12px);
  box-shadow: var(--theme-shadow-lg);
  border-color: rgba(217, 119, 6, 0.2);
}

.stats-counter__card:hover::before {
  opacity: 1;
}

.stats-counter__icon-wrapper {
  width: 64px;
  height: 64px;
  background: var(--wp--preset--color--secondary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.stats-counter__card:hover .stats-counter__icon-wrapper {
  background: var(--wp--preset--color--accent);
  transform: rotate(10deg);
}

.stats-counter__icon {
  font-size: 1.75rem;
  color: var(--wp--preset--color--accent);
  transition: color 0.3s ease;
}

.stats-counter__card:hover .stats-counter__icon {
  color: white;
}

.stats-counter__value {
  display: block;
  font-size: 3rem;
  font-weight: 900;
  font-family: var(--theme-font-heading);
  letter-spacing: -0.04em;
  color: var(--wp--preset--color--primary);
  margin-bottom: 0.5rem;
}

.stats-counter__label {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--wp--preset--color--muted-foreground);
}

@media (max-width: 640px) {
  .trust-strip {
    margin-top: 0;
    padding: 2rem 0;
  }
  
  .trust-strip__pill {
    width: 100%;
    justify-content: center;
  }
  
  .stats-counter {
    padding: 4rem 0;
  }
  
  .stats-counter__value {
    font-size: 2.5rem;
  }
}
