/*
Theme Name: Wassist
Author: Select Creatives
Description: Run your WordPress site from WhatsApp. Marketing site theme for Wassist — snap a photo, send a text, and your site updates itself.
Requires at least: 6.7
Tested up to: 6.7
Requires PHP: 7.4
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: wassist
Tags: full-site-editing, block-patterns, custom-colors, editor-style, one-page
*/

/* -----------------------------------------------------------------------
   Font loading (Google Fonts enqueued from functions.php with preconnect;
   this file only sets the fallback stack references used by theme.json).
   ----------------------------------------------------------------------- */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  -webkit-font-smoothing: antialiased;
  letter-spacing: -0.011em;
}

/* -----------------------------------------------------------------------
   Layout shell
   ----------------------------------------------------------------------- */

.wassist-shell {
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 32px;
  padding-right: 32px;
  width: 100%;
  box-sizing: border-box;
}

.wassist-shell--narrow {
  max-width: 820px;
}

.wassist-shell--copy {
  max-width: 720px;
}

.wassist-shell--hero {
  max-width: 1080px;
}

.wassist-shell--logos {
  max-width: 1440px;
}

.wassist-shell--cta {
  max-width: 900px;
}

.wassist-shell--stats,
.wassist-shell--woo {
  max-width: 1080px;
}

/* Backstop: if alignfull + shell land on the same node, don't let WP breakout margins win. */
.wp-block-group.alignfull.wassist-shell {
  max-width: 1180px;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100%;
}

.wp-block-group.alignfull.wassist-shell.wassist-shell--narrow {
  max-width: 820px;
}

/* Editable pattern grids (replace former inline CSS grids). */
.wassist-cards-grid,
.wassist-steps-grid,
.wassist-stats-grid,
.wassist-pricing-grid,
.wassist-testimonials-grid {
  display: grid;
  gap: 22px;
  width: 100%;
}

.wassist-cards-grid-capabilities {
  display: grid;
  gap: 22px;
  width: 100%;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.wassist-cards-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.wassist-steps-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 44px;
}

.wassist-stats-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: clamp(32px, 5vw, 64px);
}

.wassist-pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  align-items: start;
}

.wassist-testimonials-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.wassist-woo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  width: 100%;
}

.wassist-card.wp-block-group,
.wassist-security-card.wp-block-group,
.wassist-step.wp-block-group,
.wassist-tier.wp-block-group,
.wassist-testimonial.wp-block-group {
  box-sizing: border-box;
}

.wassist-card.wp-block-group > *:last-child,
.wassist-security-card.wp-block-group > *:last-child,
.wassist-step.wp-block-group > *:last-child {
  margin-bottom: 0;
}

.wassist-card .wp-block-heading,
.wassist-security-card .wp-block-heading {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin: 0 0 11px;
}

.wassist-step .wassist-step__number {
  margin-bottom: 14px;
}

.wassist-step .wp-block-heading {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}

@media (max-width: 600px) {
  .wassist-shell {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* -----------------------------------------------------------------------
   Animations
   ----------------------------------------------------------------------- */

@keyframes wassist-pop {
  from { opacity: 0; transform: translateY(10px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes wassist-slidein {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes wassist-blink {
  0%, 60%, 100% { opacity: 0.25; }
  30% { opacity: 1; }
}

@keyframes wassist-flash {
  0% { background: #A6ECBF; }
  100% { background: #E4F7EC; }
}

/* Scroll-triggered section fade-in (enabled by reveal.js). */
@media (prefers-reduced-motion: no-preference) {
  html.wassist-reveal-ready .wassist-reveal:not(.is-in) {
    opacity: 0;
    transform: translateY(28px);
  }

  html.wassist-reveal-ready .wassist-reveal.is-in {
    opacity: 1;
    transform: translateY(0);
    transition:
      opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  }
}

.wassist-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #8A8A88;
  display: inline-block;
  animation: wassist-blink 1.2s infinite;
}

.wassist-dot:nth-child(2) { animation-delay: 0.2s; }
.wassist-dot:nth-child(3) { animation-delay: 0.4s; }

/* -----------------------------------------------------------------------
   Header / navigation
   ----------------------------------------------------------------------- */

.wassist-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--wp--preset--color--border);
}

.wassist-header__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 15px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.wassist-header__logo {
  display: flex;
  align-items: center;
  gap: 9px;
}

.wassist-header__logo img {
  width: auto;
  height: 100px;
  display: block;
}

.wassist-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 15px;
  font-weight: 500;
  color: var(--wp--preset--color--text-secondary);
}

.wassist-nav__link {
  color: var(--wp--preset--color--text-secondary);
  text-decoration: none;
  white-space: nowrap;
}

.wassist-nav__link:hover {
  color: var(--wp--preset--color--accent-text);
}

.wassist-header__cta {
  background: var(--wp--preset--color--accent);
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  padding: 11px 20px;
  border-radius: 10px;
  white-space: nowrap;
  flex: none;
}

.wassist-header__cta:hover {
  background: var(--wp--preset--color--accent-deep);
  color: #fff;
}

.wassist-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}

.wassist-mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--wp--preset--color--contrast);
  border-radius: 2px;
}

.wassist-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 18px;
  padding: 20px 32px 26px;
  border-top: 1px solid var(--wp--preset--color--border);
  background: #fff;
}

.wassist-mobile-menu.is-open {
  display: flex;
}

@media (max-width: 880px) {
  .wassist-nav {
    display: none;
  }
  .wassist-mobile-toggle {
    display: flex;
  }
}

/* -----------------------------------------------------------------------
   Hero
   ----------------------------------------------------------------------- */

.wassist-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--wp--preset--color--accent-pale);
  border: 1px solid #D4F3DF;
  border-radius: 999px;
  padding: 7px 15px;
  font-size: 14px;
  font-weight: 600;
  color: var(--wp--preset--color--accent-text);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.wassist-badge::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--wp--preset--color--accent);
  flex: none;
}

.wassist-accent {
  color: var(--wp--preset--color--accent);
}

.wassist-hero-title strong {
  color: var(--wp--preset--color--accent);
  font-weight: inherit;
}

.wassist-hero .wassist-shell--hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 26px;
  text-align: center;
}

.wassist-hero .wassist-lede {
  max-width: 600px;
}

.wassist-heading-narrow {
  max-width: 620px;
  margin-bottom: 60px !important;
}

.wassist-heading-medium {
  max-width: 680px;
  margin-bottom: 56px !important;
}

.wassist-shell--copy .wp-block-heading {
  margin-bottom: 20px !important;
}

/* Full-bleed bands with hairline borders (keeps block markup validation-safe). */
.wassist-band {
  border-top: 1px solid var(--wp--preset--color--border);
  border-bottom: 1px solid var(--wp--preset--color--border);
}

.wassist-section-pad {
  padding-top: var(--wp--preset--spacing--70);
  padding-bottom: var(--wp--preset--spacing--70);
}

.wassist-section-pad--md {
  padding-top: var(--wp--preset--spacing--60);
  padding-bottom: var(--wp--preset--spacing--60);
}

.wassist-shell--page {
  max-width: 600px;
}

.wassist-page-center {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.wassist-post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  color: var(--wp--preset--color--text-muted);
  font-size: 14px;
}

.wassist-query-title {
  margin-bottom: 40px !important;
}

.wassist-search-title {
  margin-bottom: 20px !important;
}

.wassist-search-field {
  margin-bottom: 40px !important;
}

.wassist-featured-image {
  margin-bottom: 30px !important;
}

.wassist-logos-label {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.08em;
  margin-bottom: 36px !important;
}

.wassist-center-stack {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.wassist-faq-title {
  margin-bottom: 44px !important;
}

/* -----------------------------------------------------------------------
   Demo panel (hero / edit-by-text wrapper)
   ----------------------------------------------------------------------- */

.wassist-demo-panel {
  position: relative;
  background: var(--wp--preset--color--base-2);
  border: 1px solid var(--wp--preset--color--border);
  border-radius: 28px;
  padding: clamp(28px, 4vw, 56px);
  box-shadow: var(--wp--custom--shadow--panel);
}

.wassist-demo-panel__label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: clamp(24px, 3vw, 40px);
}

.wassist-demo-panel__label span.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--wp--preset--color--accent);
  box-shadow: 0 0 0 4px var(--wp--preset--color--accent-pale-2);
  flex: none;
}

.wassist-demo-panel__label span.label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wp--preset--color--text-secondary);
}

.wassist-demo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
}

.wassist-demo-caption {
  font-size: 16px;
  line-height: 1.5;
  color: var(--wp--preset--color--text-secondary);
  max-width: 460px;
}

/* -----------------------------------------------------------------------
   Phone mockup (WhatsApp chat)
   ----------------------------------------------------------------------- */

.wassist-phone {
  justify-self: center;
  width: 100%;
  max-width: 360px;
  height: 520px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--wp--preset--color--border-2);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--wp--custom--shadow--phone);
}

.wassist-phone--short {
  max-width: 340px;
  height: 420px;
}

.wassist-phone__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 15px 20px;
  background: #075E54;
  flex: none;
}

.wassist-phone__header img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  display: block;
}

.wassist-phone__title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.wassist-phone__status {
  font-size: 12px;
  color: #9FE7C4;
  line-height: 1.3;
}

.wassist-phone__body {
  background: #ECE5DD;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
  min-height: 0;
  overflow: hidden;
  justify-content: flex-end;
}

.wassist-bubble {
  font-size: 15px;
  line-height: 1.4;
  animation: wassist-pop 0.3s ease;
}

.wassist-bubble--user {
  align-self: flex-end;
  max-width: 85%;
  background: #D9FDD3;
  border-radius: 13px 13px 3px 13px;
  padding: 9px 14px;
}

.wassist-bubble--bot {
  align-self: flex-start;
  max-width: 88%;
  background: #fff;
  border-radius: 13px 13px 13px 3px;
  padding: 11px 14px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06);
}

.wassist-bubble--typing {
  align-self: flex-start;
  background: #fff;
  border-radius: 13px 13px 13px 3px;
  padding: 13px 16px;
  display: flex;
  gap: 5px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.06);
}

.wassist-bubble__image {
  position: relative;
  width: 100%;
  height: 120px;
  border-radius: 8px;
  overflow: hidden;
  background: #CBBFA6;
  display: flex;
  align-items: flex-end;
  padding: 8px;
  margin-bottom: 6px;
}

.wassist-bubble__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wassist-bubble__image span {
  position: relative;
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  font-size: 11px;
  font-family: monospace;
  padding: 2px 6px;
  border-radius: 4px;
}

.wassist-bubble__preview {
  margin-top: 9px;
  border: 1px solid #ECECEC;
  border-radius: 10px;
  overflow: hidden;
}

.wassist-bubble__preview img {
  width: 100%;
  height: 84px;
  object-fit: cover;
  display: block;
}

.wassist-bubble__preview-body {
  padding: 8px 10px;
}

.wassist-bubble__preview-title {
  font-weight: 700;
  font-size: 14px;
}

.wassist-bubble__preview-price {
  color: var(--wp--preset--color--accent);
  font-weight: 700;
  font-size: 14px;
}

.wassist-bubble__hint {
  margin-top: 8px;
  color: #667781;
  font-size: 13px;
}

/* -----------------------------------------------------------------------
   Browser mockup
   ----------------------------------------------------------------------- */

.wassist-browser {
  height: 520px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--wp--preset--color--border-2);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--wp--custom--shadow--card);
}

.wassist-browser--short {
  height: 420px;
}

.wassist-browser__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  border-bottom: 1px solid #F0EFEB;
  flex: none;
}

.wassist-browser__dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #E4E3DE;
}

.wassist-browser__url {
  flex: 1;
  margin-left: 10px;
  background: var(--wp--preset--color--base-2);
  border-radius: 8px;
  padding: 5px 14px;
  font-size: 13px;
  color: var(--wp--preset--color--text-muted);
}

.wassist-browser__body {
  padding: clamp(18px, 2.5vw, 28px);
  flex: 1;
  overflow: hidden;
}

.wassist-shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.wassist-shop-item__image {
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  background: #D9D6CE;
  position: relative;
}

.wassist-shop-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wassist-shop-item__name {
  font-size: 13px;
  font-weight: 600;
  margin-top: 7px;
}

.wassist-shop-item__price {
  font-size: 13px;
  color: #8A8A88;
}

.wassist-shop-item__price--accent {
  color: var(--wp--preset--color--accent);
  font-weight: 600;
}

.wassist-shop-item__placeholder {
  aspect-ratio: 1;
  border-radius: 12px;
  border: 2px dashed #DAD8D1;
}

.wassist-shop-item__badge {
  position: absolute;
  top: 6px;
  right: 6px;
  background: var(--wp--preset--color--accent);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 7px;
  border-radius: 999px;
}

/* -----------------------------------------------------------------------
   Logos bar
   ----------------------------------------------------------------------- */

.wassist-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(16px, 3vw, 44px);
  width: 100%;
}

.wassist-logos__item {
  display: flex;
  align-items: center;
  gap: 9px;
  flex: none;
}

.wassist-logos__item img {
  width: 26px;
  height: 26px;
  display: block;
}

.wassist-logos__item span {
  font-size: clamp(13px, 1.5vw, 18px);
  font-weight: 700;
  color: var(--wp--preset--color--text-secondary);
  white-space: nowrap;
}

/* -----------------------------------------------------------------------
   Stats bar
   ----------------------------------------------------------------------- */

.wassist-stat__number {
  font-size: clamp(40px, 4.5vw, 60px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--wp--preset--color--accent);
  line-height: 1;
  margin-bottom: 12px;
}

.wassist-stat__label {
  font-size: 17px;
  color: var(--wp--preset--color--text-secondary);
  line-height: 1.5;
}

/* -----------------------------------------------------------------------
   Steps ("how it works")
   ----------------------------------------------------------------------- */

.wassist-step {
  border-top: 2px solid #E4E3DE;
  padding-top: 26px;
}

.wassist-step__number {
  font-size: 50px;
  font-weight: 800;
  color: var(--wp--preset--color--accent);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
}

.wassist-step__title {
  font-size: 21px;
  font-weight: 700;
  margin-bottom: 14px;
}

/* -----------------------------------------------------------------------
   Cards (features / security)
   ----------------------------------------------------------------------- */

.wassist-card {
  background: #fff;
  border: 1px solid #EAE9E4;
  border-radius: 20px;
  padding: 30px;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
}

.wassist-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
}

.wassist-card__title {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 11px;
}

.wassist-security-card {
  background: var(--wp--preset--color--base-2);
  border: 1px solid var(--wp--preset--color--border);
  border-radius: 20px;
  padding: 32px;
  transition: transform 0.2s, box-shadow 0.2s;
  height: 100%;
}

.wassist-security-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.07);
}

.wassist-icon-badge {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--wp--preset--color--accent-pale-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 0 12px;
  line-height: 1;
}

.wassist-security-banner {
  margin-top: 28px;
  background: var(--wp--preset--color--contrast-2);
  border-radius: 20px;
  padding: clamp(24px, 3vw, 36px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.wassist-security-banner .wassist-icon-badge {
  background: var(--wp--preset--color--accent);
  margin-bottom: 0;
}

.wassist-security-banner > p:not(.wassist-icon-badge) {
  flex: 1;
  min-width: 260px;
  font-size: 17px;
  line-height: 1.55;
  color: #D8D8D2;
  margin: 0;
}

/* -----------------------------------------------------------------------
   WooCommerce dark section
   ----------------------------------------------------------------------- */

.wassist-woo {
  background: var(--wp--preset--color--contrast-2);
  color: #fff;
}

.wassist-woo p {
  color: #B0B0AC;
}

.wassist-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 4px;
}

.wassist-chip {
  background: #242422;
  border: 1px solid #34342F;
  border-radius: 999px;
  padding: 8px 15px;
  font-size: 14px;
  color: #D8D8D2;
}

.wassist-woo-phone {
  justify-self: center;
  width: 100%;
  max-width: 380px;
  background: #1F1F1D;
  border: 1px solid #2E2E2A;
  border-radius: 24px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.wassist-woo-phone .wassist-bubble--user {
  background: #0B5C2E;
  color: #fff;
}

.wassist-woo-phone .wassist-bubble--bot {
  background: #2A2A27;
  color: #fff;
  box-shadow: none;
}

/* -----------------------------------------------------------------------
   Testimonials
   ----------------------------------------------------------------------- */

.wassist-testimonials-grid {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  align-items: stretch;
}

.wassist-testimonial {
  margin: 0;
  background: var(--wp--preset--color--base-2);
  border-radius: 20px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 22px;
  height: 100%;
  text-align: left;
  box-sizing: border-box;
}

.wassist-testimonial > * {
  margin-top: 0;
  margin-bottom: 0;
}

.wassist-testimonial .wp-block-quote,
.wassist-testimonial__quote,
.wassist-testimonial blockquote {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  box-shadow: none;
  font-size: 19px;
  line-height: 1.55;
  font-weight: 500;
  color: var(--wp--preset--color--contrast);
  quotes: none;
  text-align: left;
}

.wassist-testimonial .wp-block-quote::before,
.wassist-testimonial .wp-block-quote::after,
.wassist-testimonial__quote::before,
.wassist-testimonial__quote::after {
  content: none;
}

.wassist-testimonial .wp-block-quote p,
.wassist-testimonial__quote p {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  font-style: normal;
  color: var(--wp--preset--color--contrast);
  text-align: left;
}

.wassist-testimonial__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto !important;
  text-align: left;
}

.wassist-testimonial__meta .wp-block-group {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wassist-testimonial__meta .wp-block-group p {
  margin: 0;
}

.wassist-testimonial__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #D9D6CE;
  flex: none;
  object-fit: cover;
  display: block;
}

.wassist-testimonial__name {
  font-size: 15px;
  margin: 0;
  color: var(--wp--preset--color--contrast);
}

.wassist-testimonial__role {
  color: var(--wp--preset--color--text-muted);
  margin: 0;
}

/* -----------------------------------------------------------------------
   Pricing
   ----------------------------------------------------------------------- */

.wassist-pricing-intro {
  margin-bottom: 56px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.wassist-pricing-intro .wassist-eyebrow {
  margin-bottom: 16px;
}

.wassist-pricing-intro .wp-block-heading {
  margin: 0 0 14px;
}

.wassist-pricing-intro > .wp-block-paragraph:last-child {
  margin: 0;
  font-size: 18px;
  color: var(--wp--preset--color--text-secondary);
}

.wassist-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  align-items: start;
  width: 100%;
}

.wassist-tier {
  background: #fff;
  border: 1.5px solid var(--wp--preset--color--border-2);
  border-radius: 24px;
  padding: 38px 34px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: border-color 0.2s;
  height: auto;
  position: relative;
  box-sizing: border-box;
}

.wassist-tier > * {
  margin-top: 0;
  margin-bottom: 0;
}

.wassist-tier:hover {
  border-color: #C9C7C0;
}

.wassist-tier--featured {
  border: 2px solid var(--wp--preset--color--accent);
  box-shadow: 0 20px 50px rgba(37, 211, 102, 0.15);
}

.wassist-tier__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  background: var(--wp--preset--color--accent) !important;
  color: #fff !important;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  padding: 5px 15px;
  border-radius: 999px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  margin: 0 !important;
  width: max-content;
}

.wassist-tier__name {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--wp--preset--color--text-secondary) !important;
}

.wassist-tier--featured .wassist-tier__name {
  color: var(--wp--preset--color--accent) !important;
}

.wassist-tier__price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin: 0;
  color: var(--wp--preset--color--contrast);
}

.wassist-tier__price-value {
  font-size: 50px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--wp--preset--color--contrast);
}

.wassist-tier__price-period {
  font-size: 17px;
  font-weight: 500;
  color: var(--wp--preset--color--text-muted);
}

.wassist-tier__desc {
  font-size: 15px;
  line-height: 1.5;
  color: var(--wp--preset--color--text-secondary) !important;
}

.wassist-tier__features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  font-size: 15px;
  line-height: 1.45;
  color: #3A3A38;
  flex: 1;
  list-style: none;
  margin: 0;
  padding: 0;
}

.wassist-tier__features li,
.wassist-tier__feature {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin: 0;
  padding: 0;
  color: #3A3A38;
}

.wassist-tier__features li::before,
.wassist-tier__feature::before {
  content: "\2713";
  color: var(--wp--preset--color--accent);
  font-weight: 700;
  flex: none;
  line-height: 1.45;
}

.wassist-tier .wp-block-buttons {
  width: 100%;
  margin-top: 4px;
  margin-bottom: 0;
}

.wassist-tier .wp-block-button {
  width: 100%;
}

.wassist-tier .wp-block-button__link {
  display: block;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  padding: 13px 16px;
  border-radius: 11px;
}

.wassist-tier .is-style-outline .wp-block-button__link,
.wassist-tier .wp-block-button.is-style-outline .wp-block-button__link {
  background: transparent;
  color: var(--wp--preset--color--contrast);
  border: 1.5px solid #DCDBD5;
}

.wassist-tier .is-style-outline .wp-block-button__link:hover,
.wassist-tier .wp-block-button.is-style-outline .wp-block-button__link:hover {
  border-color: #C9C7C0;
  background: transparent;
  color: var(--wp--preset--color--contrast);
}

.wassist-tier--featured .wp-block-button:not(.is-style-outline) .wp-block-button__link {
  background: var(--wp--preset--color--accent);
  color: #fff;
  border: none;
}

.wassist-tier--featured .wp-block-button:not(.is-style-outline) .wp-block-button__link:hover {
  background: var(--wp--preset--color--accent-deep);
  color: #fff;
}

/* -----------------------------------------------------------------------
   FAQ
   ----------------------------------------------------------------------- */

.wassist-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.wassist-faq__item {
  background: var(--wp--preset--color--base-2);
  border-radius: 16px;
  padding: 2px 26px;
}

.wassist-faq__item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 22px 0;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

.wassist-faq__item summary::-webkit-details-marker {
  display: none;
}

.wassist-faq__plus {
  color: var(--wp--preset--color--accent);
  font-size: 26px;
  font-weight: 400;
  transition: transform 0.2s;
  flex: none;
}

.wassist-faq__item[open] .wassist-faq__plus {
  transform: rotate(45deg);
}

.wassist-faq__answer {
  margin: 0;
  padding: 0 0 22px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--wp--preset--color--text-secondary);
}

/* -----------------------------------------------------------------------
   CTA band
   ----------------------------------------------------------------------- */

.wassist-cta {
  background: var(--wp--preset--color--accent);
}

.wassist-cta p {
  color: #EAFFF2;
}

.wassist-cta .wassist-cta__note {
  color: #DFFBE9;
  font-size: 14px;
}

/* -----------------------------------------------------------------------
   Footer
   ----------------------------------------------------------------------- */

.wassist-footer {
  background: var(--wp--preset--color--contrast-2);
  color: var(--wp--preset--color--text-muted);
}

.wassist-footer__top {
  max-width: 1180px;
  margin: 0 auto;
  padding: 60px 32px 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.wassist-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 300px;
}

.wassist-footer__brand img {
  width: 100px;
  height: auto;
  display: block;
}

.wassist-footer__tagline {
  font-size: 15px;
  line-height: 1.55;
}

.wassist-footer__studio {
  font-size: 14px;
  line-height: 1.55;
  margin-top: 6px;
}

.wassist-footer__studio a {
  color: var(--wp--preset--color--accent);
  font-weight: 600;
}

.wassist-footer__columns {
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
}

.wassist-footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.wassist-footer__col-title {
  color: #fff;
  font-weight: 600;
  margin-bottom: 4px;
}

.wassist-footer__col a {
  color: var(--wp--preset--color--text-muted);
}

.wassist-footer__col a:hover {
  color: var(--wp--preset--color--accent-text);
}

.wassist-footer__bottom {
  border-top: 1px solid #2A2A27;
}

.wassist-footer__bottom-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 32px;
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
}

.wassist-footer__bottom-inner a {
  color: var(--wp--preset--color--text-muted);
  font-weight: 600;
}

/* -----------------------------------------------------------------------
   Trial lead modal
   ----------------------------------------------------------------------- */

html.wassist-trial-open {
  overflow: hidden;
}

.wassist-trial[hidden] {
  display: none !important;
}

.wassist-trial {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.wassist-trial__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 25, 0.55);
  backdrop-filter: blur(4px);
}

.wassist-trial__dialog {
  position: relative;
  width: 100%;
  max-width: 440px;
  max-height: calc(100vh - 48px);
  overflow: auto;
  background: #fff;
  border-radius: 24px;
  padding: 40px 36px 36px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
  animation: wassist-pop 0.28s ease-out;
}

.wassist-trial__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--wp--preset--color--text-muted);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wassist-trial__close:hover {
  background: var(--wp--preset--color--base-2, #F7F6F3);
  color: var(--wp--preset--color--contrast);
}

.wassist-trial__title {
  margin: 0 0 10px;
  font-size: clamp(26px, 3vw, 32px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.wassist-trial__desc {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--wp--preset--color--text-secondary);
}

.wassist-trial__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.wassist-trial__hp {
  position: absolute !important;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  padding: 0;
  margin: 0;
}

.wassist-trial__field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.wassist-trial__field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--wp--preset--color--contrast);
}

.wassist-trial__field input {
  width: 100%;
  border: 1.5px solid var(--wp--preset--color--border-2);
  border-radius: 12px;
  padding: 13px 15px;
  font-size: 15px;
  font-family: inherit;
  color: var(--wp--preset--color--contrast);
  background: #fff;
  outline: none;
  transition: border-color 0.15s;
}

.wassist-trial__field input::placeholder {
  color: var(--wp--preset--color--text-muted);
}

.wassist-trial__field input:focus {
  border-color: var(--wp--preset--color--accent);
  box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.18);
}

.wassist-trial__error {
  margin: 0;
  font-size: 14px;
  color: #C0392B;
}

.wassist-trial__submit {
  width: 100%;
  margin-top: 4px;
  border: none;
  border-radius: 12px;
  padding: 15px 28px;
  background: var(--wp--preset--color--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s;
}

.wassist-trial__submit:hover:not(:disabled) {
  background: var(--wp--preset--color--accent-deep);
}

.wassist-trial__submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.wassist-trial__disclaimer {
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 1.5;
  color: var(--wp--preset--color--text-muted);
  text-align: center;
}

.wassist-trial__success .wassist-trial__submit {
  margin-top: 8px;
}

/* -----------------------------------------------------------------------
   Live chat block ("try it yourself")
   ----------------------------------------------------------------------- */

.wassist-live-chat {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  background: #fff;
  border: 1px solid var(--wp--preset--color--border-2);
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.09);
  text-align: left;
}

.wassist-live-chat__messages {
  background: #ECE5DD;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  height: 330px;
  overflow-y: auto;
}

.wassist-live-chat__suggestions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  padding: 13px 16px 3px;
  background: #fff;
}

.wassist-live-chat__chip {
  border: 1px solid #E4E3DE;
  background: #fff;
  border-radius: 999px;
  padding: 7px 13px;
  font-size: 13px;
  font-weight: 500;
  color: var(--wp--preset--color--text-secondary);
  cursor: pointer;
  font-family: inherit;
}

.wassist-live-chat__chip:hover {
  border-color: var(--wp--preset--color--accent);
  background: var(--wp--preset--color--accent-pale);
}

.wassist-live-chat__form {
  display: flex;
  gap: 9px;
  padding: 13px 16px 16px;
  background: #fff;
}

.wassist-live-chat__input {
  flex: 1;
  border: 1.5px solid #E4E3DE;
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 15px;
  font-family: inherit;
  outline: none;
  color: var(--wp--preset--color--contrast);
}

.wassist-live-chat__send {
  background: var(--wp--preset--color--accent);
  color: #fff;
  border: none;
  border-radius: 999px;
  width: 48px;
  height: 48px;
  font-size: 20px;
  cursor: pointer;
  flex: none;
}

.wassist-live-chat__send:hover {
  background: var(--wp--preset--color--accent-deep);
}

/* -----------------------------------------------------------------------
   Utility
   ----------------------------------------------------------------------- */

.wassist-eyebrow {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wp--preset--color--accent-text);
  margin-bottom: 16px;
  display: block;
}

.wassist-lede {
  font-size: 19px;
  line-height: 1.6;
  color: var(--wp--preset--color--text-secondary);
  text-wrap: pretty;
}

@media (max-width: 782px) {
  .wassist-demo-grid,
  .wassist-shop-grid {
    gap: 18px;
  }
}
