:root,
[data-theme='light'] {
  --font-display: 'Cabinet Grotesk', 'Arial', sans-serif;
  --font-body: 'Satoshi', 'Inter', sans-serif;

  --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
  --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
  --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
  --text-3xl: clamp(2.7rem, 1.1rem + 5vw, 6.5rem);

  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  --color-bg: #f7f3e8;
  --color-surface: #fffaf0;
  --color-surface-2: #eee4d0;
  --color-surface-offset: #e8ddc6;
  --color-border: #d1c3aa;
  --color-divider: #ddcfb7;
  --color-text: #211d16;
  --color-text-muted: #756b5d;
  --color-text-faint: #a99d8c;
  --color-text-inverse: #fff8ea;
  --color-primary: #09645f;
  --color-primary-hover: #074c49;
  --color-primary-active: #073b39;
  --color-primary-highlight: #d6e7df;
  --color-warning: #9b4b18;
  --color-success: #3f7428;

  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-full: 9999px;
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 1px 2px rgb(50 37 19 / 0.08);
  --shadow-md: 0 10px 26px rgb(50 37 19 / 0.11);
  --shadow-lg: 0 24px 64px rgb(50 37 19 / 0.16);
  --content-narrow: 640px;
  --content-default: 960px;
  --content-wide: 1200px;
}

[data-theme='dark'] {
  --color-bg: #15130f;
  --color-surface: #1f1b15;
  --color-surface-2: #2a241b;
  --color-surface-offset: #30291f;
  --color-border: #493f31;
  --color-divider: #352e24;
  --color-text: #efe6d5;
  --color-text-muted: #b6aa98;
  --color-text-faint: #746a5c;
  --color-text-inverse: #15130f;
  --color-primary: #83c7bd;
  --color-primary-hover: #a0dad1;
  --color-primary-active: #c0efe8;
  --color-primary-highlight: #203b38;
  --color-warning: #df9460;
  --color-success: #9ed37b;
  --shadow-sm: 0 1px 2px rgb(0 0 0 / 0.3);
  --shadow-md: 0 10px 30px rgb(0 0 0 / 0.35);
  --shadow-lg: 0 24px 70px rgb(0 0 0 / 0.5);
}

body {
  overflow-x: hidden;
}

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

.skip-link {
  position: absolute;
  left: var(--space-4);
  top: var(--space-4);
  z-index: 100;
  transform: translateY(-160%);
  border-radius: var(--radius-full);
  background: var(--color-text);
  color: var(--color-bg);
  padding: var(--space-2) var(--space-4);
}

.skip-link:focus {
  transform: translateY(0);
}

.whatsapp-float {
  position: fixed;
  right: clamp(1rem, 3vw, 1.5rem);
  bottom: clamp(1rem, 3vw, 1.5rem);
  z-index: 60;
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  border-radius: var(--radius-full);
  background: #25d366;
  color: #071b10;
  box-shadow: 0 18px 42px rgba(7, 27, 16, 0.22);
  font-size: var(--text-sm);
  font-weight: 900;
  line-height: 1;
  padding: var(--space-3) var(--space-4);
  text-decoration: none;
  transition:
    transform var(--transition-interactive),
    box-shadow var(--transition-interactive);
}

.whatsapp-float:hover {
  color: #071b10;
  transform: translateY(-2px);
  box-shadow: 0 22px 52px rgba(7, 27, 16, 0.28);
}

.whatsapp-float span {
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.72);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  padding: 0.35rem 0.5rem;
  text-transform: uppercase;
}

.whatsapp-float strong {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid color-mix(in oklab, var(--color-text), transparent 88%);
  background: color-mix(in oklab, var(--color-bg), transparent 8%);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - var(--space-8), var(--content-wide));
  min-height: 72px;
  margin-inline: auto;
  gap: var(--space-4);
}

.brand,
.nav-actions,
.nav-links {
  display: flex;
  align-items: center;
}

.brand {
  gap: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(1, 105, 111, 0.18);
}

.nav-links {
  gap: var(--space-6);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.nav-links a:hover {
  color: var(--color-text);
}

.nav-actions {
  gap: var(--space-2);
}

.theme-toggle {
  display: grid;
  min-width: 44px;
  min-height: 44px;
  place-items: center;
  border: 1px solid color-mix(in oklab, var(--color-text), transparent 88%);
  border-radius: var(--radius-full);
  background: var(--color-surface);
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-primary);
  border-radius: var(--radius-full);
  background: var(--color-primary);
  color: var(--color-text-inverse);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: var(--space-3) var(--space-5);
  box-shadow: var(--shadow-sm);
}

.button:hover {
  background: var(--color-primary-hover);
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(0);
}

.button-secondary {
  background: transparent;
  color: var(--color-text);
}

.button-secondary:hover {
  background: var(--color-primary-highlight);
  color: var(--color-text);
}

.button-small {
  min-height: 40px;
  padding: var(--space-2) var(--space-4);
}

.button-disabled,
.button-disabled:hover {
  cursor: not-allowed;
  border-color: color-mix(in oklab, var(--color-text), transparent 70%);
  background: color-mix(in oklab, var(--color-text), transparent 82%);
  color: var(--color-text);
  transform: none;
}

.text-link {
  display: inline-flex;
  margin-top: var(--space-5);
  color: var(--color-primary);
  font-weight: 800;
}

.text-link:hover {
  color: var(--color-primary-hover);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: min(100% - var(--space-8), var(--content-wide));
  min-height: calc(100dvh - 72px);
  margin-inline: auto;
  gap: var(--space-12);
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}

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

.eyebrow,
.section-kicker,
.package-label {
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 10ch;
  margin-top: var(--space-4);
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: -0.055em;
}

.hero-lede {
  max-width: 58ch;
  margin-top: var(--space-6);
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-8);
}

.hero-stats {
  display: grid;
  max-width: 620px;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-3);
  margin-top: var(--space-8);
}

.hero-stats div {
  border: 1px solid color-mix(in oklab, var(--color-text), transparent 88%);
  border-radius: var(--radius-lg);
  background: color-mix(in oklab, var(--color-surface), transparent 15%);
  padding: var(--space-4);
}

.hero-stats dt {
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
}

.hero-stats dd {
  margin-top: var(--space-1);
  font-family: var(--font-display);
  font-size: var(--text-lg);
  font-weight: 800;
}

.hero-visual {
  position: relative;
  align-self: center;
}

.mockup-frame {
  overflow: hidden;
  border: 1px solid color-mix(in oklab, var(--color-text), transparent 86%);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(140deg, color-mix(in oklab, var(--color-surface), white 16%), var(--color-surface-2)),
    var(--color-surface);
  box-shadow: var(--shadow-lg);
  padding: clamp(var(--space-3), 3vw, var(--space-6));
}

.mockup-frame img,
.proof-strip figure img,
.image-feature img,
.product-image img {
  border-radius: var(--radius-lg);
}

.offer-card {
  position: static;
  width: min(220px, 50vw);
  margin: var(--space-4) 0 0 auto;
  border: 1px solid color-mix(in oklab, var(--color-text), transparent 85%);
  border-radius: var(--radius-xl);
  background: var(--color-text);
  color: var(--color-bg);
  padding: var(--space-5);
  box-shadow: var(--shadow-lg);
}

.offer-card span,
.offer-card small {
  display: block;
  color: color-mix(in oklab, var(--color-bg), transparent 22%);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
}

.offer-card strong {
  display: block;
  margin-block: var(--space-1);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  letter-spacing: -0.03em;
}

.section-tight,
.packages,
.how,
.poster-section,
.targets,
.proof-strip,
.final-cta {
  width: min(100% - var(--space-8), var(--content-wide));
  margin-inline: auto;
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}

.page-hero {
  display: grid;
  width: min(100% - var(--space-8), var(--content-wide));
  margin-inline: auto;
  gap: var(--space-10);
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}

.page-hero h1 {
  max-width: 12ch;
  margin-top: var(--space-4);
  font-family: var(--font-display);
  font-size: var(--text-3xl);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.95;
}

.page-hero p:not(.eyebrow) {
  max-width: 62ch;
  margin-top: var(--space-6);
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  line-height: 1.45;
}

.product-hero,
.contact-hero {
  align-items: center;
}

.product-image,
.image-feature figure {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
  padding: var(--space-3);
}

.product-image img,
.image-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-feature {
  display: grid;
  align-items: center;
  gap: var(--space-10);
}

.image-feature h2 {
  max-width: 860px;
  margin-top: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.045em;
}

.image-feature p:not(.eyebrow) {
  margin-top: var(--space-5);
  color: var(--color-text-muted);
}

.problem h2,
.section-heading h2,
.poster-copy h2,
.target-copy h2,
.proof-strip h2,
.final-cta h2 {
  max-width: 860px;
  margin-top: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.045em;
}

.problem-grid {
  display: grid;
  gap: var(--space-6);
  margin-top: var(--space-8);
  color: var(--color-text-muted);
}

.packages {
  border-block: 1px solid color-mix(in oklab, var(--color-text), transparent 88%);
}

.section-heading {
  display: grid;
  gap: var(--space-3);
  margin-bottom: var(--space-10);
}

.section-heading.compact {
  max-width: 720px;
}

.pricing-grid {
  display: grid;
  gap: var(--space-4);
}

.price-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid color-mix(in oklab, var(--color-text), transparent 88%);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}

.price-card.featured {
  background:
    linear-gradient(180deg, var(--color-primary-highlight), var(--color-surface)),
    var(--color-surface);
  box-shadow: var(--shadow-md);
}

.price-card h3 {
  margin-top: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
}

.price-card p:not(.package-label) {
  margin-top: var(--space-3);
  color: var(--color-text-muted);
}

.price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-block: var(--space-6) var(--space-2);
}

.was {
  color: var(--color-text-muted);
  text-decoration: line-through;
}

.price strong {
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  letter-spacing: -0.05em;
}

.launch-price,
.quote-line {
  display: inline-flex;
  align-self: flex-start;
  border-radius: var(--radius-full);
  background: var(--color-primary-highlight);
  color: var(--color-primary) !important;
  font-size: var(--text-sm);
  font-weight: 800;
  padding: var(--space-2) var(--space-3);
}

.price-card ul {
  display: grid;
  gap: var(--space-3);
  margin-top: auto;
  padding-left: var(--space-5);
  color: var(--color-text-muted);
}

.price-card li::marker {
  color: var(--color-primary);
}

.product-buy {
  margin-top: var(--space-6);
}

.pricing-note {
  max-width: 760px;
  margin-top: var(--space-8);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.platforms {
  width: min(100% - var(--space-8), var(--content-wide));
  margin-inline: auto;
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}

.platforms .section-heading p:not(.eyebrow) {
  max-width: 760px;
  color: var(--color-text-muted);
}

.platform-grid {
  display: grid;
  gap: var(--space-4);
}

.platform-card {
  border: 1px solid color-mix(in oklab, var(--color-text), transparent 88%);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}

.platform-card h3 {
  margin-top: var(--space-4);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.platform-card p {
  margin-top: var(--space-3);
  color: var(--color-text-muted);
}

.dark-card {
  background:
    radial-gradient(circle at 70% 30%, color-mix(in oklab, #00b67a, transparent 50%), transparent 36%),
    var(--color-text);
  color: var(--color-bg);
}

.dark-card p {
  color: color-mix(in oklab, var(--color-bg), transparent 24%);
}

.platform-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border-radius: var(--radius-lg);
  background: var(--color-primary-highlight);
  color: var(--color-primary);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
}

.trustpilot-icon {
  background: #00b67a;
  color: #ffffff;
}

.dual-icon {
  background: var(--color-text);
  color: var(--color-bg);
}

.card-showcase {
  display: grid;
  gap: var(--space-5);
  margin-top: var(--space-8);
}

.showcase-panel {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: #29aee8;
  box-shadow: var(--shadow-md);
  padding: clamp(var(--space-4), 5vw, var(--space-8));
}

.sample-card {
  position: absolute;
  width: min(58%, 315px);
  aspect-ratio: 0.68;
  border-radius: 18px;
  box-shadow: 0 16px 32px rgb(0 0 0 / 0.2);
}

.back-card {
  top: 12%;
  right: 10%;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: var(--space-2);
  background: linear-gradient(145deg, #4e7df2, #3f89db);
  color: #ffffff;
  padding: var(--space-6);
  text-align: center;
}

.trust-back {
  background: linear-gradient(145deg, #151a35, #00b67a);
}

.nfc-waves {
  position: absolute;
  top: var(--space-4);
  right: var(--space-4);
  color: rgb(255 255 255 / 0.8);
  font-weight: 800;
  transform: rotate(-20deg);
}

.back-card strong {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  line-height: 1;
}

.back-card small {
  color: rgb(255 255 255 / 0.8);
}

.front-card {
  left: 8%;
  bottom: 12%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-around;
  background: #ffffff;
  color: #111111;
  padding: var(--space-5);
  text-align: center;
}

.platform-word {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

.google-word {
  color: #4285f4;
}

.big-g {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  border-radius: 50%;
  background: conic-gradient(#4285f4 0 25%, #34a853 0 50%, #fbbc05 0 75%, #ea4335 0);
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
}

.trust-front {
  background: linear-gradient(160deg, #151a35, #00b67a);
  color: #ffffff;
}

.trust-star {
  color: #00b67a;
  font-size: 5rem;
  line-height: 0.8;
}

.front-card h3 {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3vw, 1.55rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.front-card p {
  font-size: var(--text-sm);
  font-weight: 700;
  text-transform: uppercase;
}

.mini-stars {
  color: #fbbc05;
  letter-spacing: 0.08em;
}

.trust-stars {
  color: #20d698;
}

.mini-qr {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: 92px;
  aspect-ratio: 1;
  gap: 3px;
  border: 7px solid #ffffff;
  background: #ffffff;
}

.mini-qr span {
  background: #111111;
}

.trust-front .mini-qr span {
  background: #111111;
}

.mini-qr span:nth-child(2),
.mini-qr span:nth-child(5),
.mini-qr span:nth-child(9),
.mini-qr span:nth-child(12),
.mini-qr span:nth-child(14),
.mini-qr span:nth-child(18),
.mini-qr span:nth-child(20),
.mini-qr span:nth-child(23),
.mini-qr span:nth-child(27),
.mini-qr span:nth-child(31),
.mini-qr span:nth-child(34) {
  background: transparent;
}

.front-card small {
  font-size: var(--text-xs);
  font-weight: 800;
  text-transform: uppercase;
}

.style-label {
  position: absolute;
  right: var(--space-6);
  bottom: var(--space-6);
  border-radius: var(--radius-sm);
  background: rgb(255 255 255 / 0.88);
  color: #245fa7;
  font-weight: 800;
  padding: var(--space-2) var(--space-3);
}

.trustpilot-panel .style-label {
  background: rgb(21 26 53 / 0.92);
  color: #ffffff;
}

.standalone-card {
  min-height: 540px;
}

.contact-details-card {
  display: grid;
  gap: var(--space-2);
  max-width: 360px;
  margin-top: var(--space-8);
  border: 1px solid color-mix(in oklab, var(--color-text), transparent 86%);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  padding: var(--space-5);
}

.contact-details-card a {
  color: var(--color-primary);
  font-weight: 800;
}

.contact-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-top: var(--space-3);
  padding-top: var(--space-3);
  border-top: 1px solid color-mix(in oklab, var(--color-text), transparent 88%);
}

.contact-social-links a {
  display: inline-flex;
  align-items: center;
  border: 1px solid color-mix(in oklab, var(--color-primary), transparent 70%);
  border-radius: var(--radius-full);
  background: var(--color-primary-highlight);
  color: var(--color-primary);
  font-size: var(--text-sm);
  padding: var(--space-2) var(--space-3);
}

.contact-form {
  display: grid;
  gap: var(--space-4);
  border: 1px solid color-mix(in oklab, var(--color-text), transparent 86%);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
  padding: clamp(var(--space-5), 4vw, var(--space-8));
}

.contact-form label {
  display: grid;
  gap: var(--space-2);
  color: var(--color-text);
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid color-mix(in oklab, var(--color-text), transparent 78%);
  border-radius: var(--radius-md);
  background: var(--color-bg);
  color: var(--color-text);
  font: inherit;
  font-weight: 500;
  padding: var(--space-3) var(--space-4);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid color-mix(in oklab, var(--color-primary), transparent 65%);
  border-color: var(--color-primary);
}

.form-note {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
}

.form-note a {
  color: var(--color-primary);
  font-weight: 800;
}

.hidden-field {
  display: none;
}

.steps {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-10);
  list-style: none;
}

.steps li {
  border-top: 1px solid color-mix(in oklab, var(--color-text), transparent 86%);
  padding-block: var(--space-6);
}

.steps span {
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: 800;
}

.steps h3 {
  margin-top: var(--space-2);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  letter-spacing: -0.03em;
}

.steps p {
  margin-top: var(--space-3);
  color: var(--color-text-muted);
}

.poster-section {
  display: grid;
  align-items: center;
  gap: var(--space-10);
}

.poster-copy p:not(.eyebrow) {
  margin-top: var(--space-5);
  color: var(--color-text-muted);
}

.poster-points {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-6);
}

.poster-points li {
  border: 1px solid color-mix(in oklab, var(--color-text), transparent 86%);
  border-radius: var(--radius-full);
  background: var(--color-surface);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-weight: 700;
  padding: var(--space-2) var(--space-4);
}

.poster-mockup {
  display: grid;
  justify-items: center;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 20% 15%, color-mix(in oklab, var(--color-primary), transparent 74%), transparent 32%),
    linear-gradient(145deg, var(--color-surface), var(--color-surface-2));
  box-shadow: var(--shadow-md);
  padding: clamp(var(--space-5), 5vw, var(--space-12));
}

.poster-paper {
  width: min(100%, 360px);
  aspect-ratio: 0.72;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  border: 1px solid color-mix(in oklab, var(--color-text), transparent 82%);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  color: var(--color-text);
  padding: var(--space-8);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.poster-tag {
  align-self: flex-start;
  border-radius: var(--radius-full);
  background: var(--color-primary-highlight);
  color: var(--color-primary);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: var(--space-2) var(--space-3);
  text-transform: uppercase;
}

.poster-paper h3 {
  max-width: 9ch;
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.05em;
}

.poster-subtitle {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  line-height: 1.45;
}

.qr-demo {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  width: min(150px, 44vw);
  aspect-ratio: 1;
  gap: 5px;
  border: 10px solid var(--color-surface);
  border-radius: var(--radius-sm);
  background: var(--color-surface);
  box-shadow: 0 0 0 1px color-mix(in oklab, var(--color-text), transparent 84%);
}

.qr-demo span {
  border-radius: 2px;
  background: var(--color-text);
}

.qr-demo span:nth-child(2),
.qr-demo span:nth-child(6),
.qr-demo span:nth-child(8),
.qr-demo span:nth-child(12),
.qr-demo span:nth-child(15),
.qr-demo span:nth-child(17),
.qr-demo span:nth-child(20),
.qr-demo span:nth-child(23),
.qr-demo span:nth-child(27),
.qr-demo span:nth-child(30),
.qr-demo span:nth-child(34) {
  background: color-mix(in oklab, var(--color-primary), var(--color-bg) 30%);
}

.poster-paper strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-lg);
}

.poster-paper small {
  color: var(--color-text-muted);
  font-size: var(--text-xs);
  font-weight: 700;
  text-transform: uppercase;
}

.targets {
  display: grid;
  align-items: start;
  gap: var(--space-10);
  border-radius: var(--radius-xl);
  background: var(--color-text);
  color: var(--color-bg);
  padding: clamp(var(--space-8), 6vw, var(--space-16));
}

.targets .eyebrow {
  color: color-mix(in oklab, var(--color-primary), white 45%);
}

.target-copy p:not(.eyebrow) {
  margin-top: var(--space-5);
  color: color-mix(in oklab, var(--color-bg), transparent 28%);
}

.target-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.target-list span {
  border: 1px solid color-mix(in oklab, var(--color-bg), transparent 76%);
  border-radius: var(--radius-full);
  padding: var(--space-3) var(--space-4);
  color: var(--color-bg);
  font-size: var(--text-sm);
  font-weight: 700;
}

.proof-strip {
  display: grid;
  align-items: center;
  gap: var(--space-8);
}

.proof-strip figure {
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
  padding: var(--space-3);
}

.proof-strip p:not(.eyebrow) {
  margin-top: var(--space-5);
  color: var(--color-text-muted);
}

.blog-teaser {
  display: grid;
  width: min(100% - var(--space-8), var(--content-wide));
  margin-inline: auto;
  gap: var(--space-8);
  border-top: 1px solid color-mix(in oklab, var(--color-text), transparent 88%);
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}

.blog-teaser h2 {
  max-width: 760px;
  margin-top: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-2xl);
  font-weight: 800;
  letter-spacing: -0.045em;
}

.blog-teaser > div > p:not(.eyebrow) {
  max-width: 68ch;
  margin-top: var(--space-5);
  color: var(--color-text-muted);
}

.blog-card {
  overflow: hidden;
  border: 1px solid color-mix(in oklab, var(--color-text), transparent 88%);
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-card div {
  padding: var(--space-6);
}

.blog-card h3 {
  margin-top: var(--space-3);
  font-family: var(--font-display);
  font-size: var(--text-xl);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.blog-card p:not(.eyebrow) {
  margin-block: var(--space-3) var(--space-5);
  color: var(--color-text-muted);
}

.blog-index-hero {
  display: grid;
  width: min(100% - var(--space-8), var(--content-wide));
  margin-inline: auto;
  gap: var(--space-5);
  padding-block: clamp(var(--space-12), 8vw, var(--space-24)) var(--space-10);
}

.blog-index-hero h1 {
  max-width: 920px;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 1.15rem + 4.8vw, 5.8rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.blog-index-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  line-height: 1.48;
}

.blog-list-grid {
  display: grid;
  width: min(100% - var(--space-8), var(--content-wide));
  margin-inline: auto;
  gap: var(--space-6);
  padding-bottom: clamp(var(--space-12), 8vw, var(--space-24));
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid color-mix(in oklab, var(--color-text), transparent 84%);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
}

.comparison-table th,
.comparison-table td {
  border: 1px solid color-mix(in oklab, var(--color-text), transparent 88%);
  padding: var(--space-3);
  text-align: left;
  vertical-align: top;
}

.comparison-table th {
  color: var(--color-text);
  font-weight: 900;
}

.blog-article {
  width: min(100% - var(--space-8), 980px);
  margin-inline: auto;
  padding-block: clamp(var(--space-12), 8vw, var(--space-24));
}

.blog-hero {
  display: grid;
  gap: var(--space-5);
}

.blog-hero h1 {
  max-width: 980px;
  font-family: var(--font-display);
  font-size: clamp(2.45rem, 1.25rem + 4.7vw, 5.6rem);
  font-weight: 800;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.blog-deck {
  max-width: 760px;
  color: var(--color-text-muted);
  font-size: var(--text-lg);
  line-height: 1.45;
}

.article-meta {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  font-weight: 700;
}

.blog-hero > img,
.article-content figure {
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius-xl);
  background: var(--color-surface);
  box-shadow: var(--shadow-md);
}

.blog-hero > img,
.article-content figure img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.blog-hero > img {
  aspect-ratio: 16 / 9;
}

.article-content {
  max-width: 780px;
  margin: var(--space-12) auto 0;
  color: var(--color-text);
}

.article-content > * + * {
  margin-top: var(--space-5);
}

.article-content h2,
.article-content h3 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.article-content h2 {
  margin-top: var(--space-12);
  font-size: var(--text-xl);
}

.article-content h3 {
  margin-top: var(--space-8);
  font-size: var(--text-lg);
}

.article-content p,
.article-content li {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  line-height: 1.75;
}

.article-content strong {
  color: var(--color-text);
}

.article-content a {
  color: var(--color-primary);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

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

.article-content li + li {
  margin-top: var(--space-2);
}

.article-content figure {
  margin-block: var(--space-10);
  padding: var(--space-3);
}

.final-cta {
  display: grid;
  justify-items: start;
  border-top: 1px solid color-mix(in oklab, var(--color-text), transparent 88%);
}

.final-cta p:not(.eyebrow) {
  margin-block: var(--space-5) var(--space-8);
  color: var(--color-text-muted);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: min(100% - var(--space-8), var(--content-wide));
  margin-inline: auto;
  gap: var(--space-4);
  border-top: 1px solid color-mix(in oklab, var(--color-text), transparent 88%);
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  padding-block: var(--space-8);
}

.site-footer a {
  color: var(--color-primary);
  font-weight: 700;
}

.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

@media (min-width: 760px) {
  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.82fr);
  }

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

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

  .page-hero,
  .image-feature {
    grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.85fr);
  }

  .image-feature.reverse {
    grid-template-columns: minmax(360px, 0.85fr) minmax(0, 0.9fr);
  }

  .image-feature.reverse figure {
    order: -1;
  }

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

  .steps li {
    display: grid;
    grid-template-columns: 90px minmax(180px, 0.6fr) minmax(0, 1fr);
    gap: var(--space-6);
  }

  .steps h3,
  .steps p {
    margin-top: 0;
  }

  .targets {
    grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.75fr);
  }

  .poster-section {
    grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.7fr);
  }

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

  .proof-strip {
    grid-template-columns: minmax(180px, 0.7fr) minmax(260px, 1fr) minmax(180px, 0.7fr);
  }

  .blog-teaser {
    grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.72fr);
    align-items: center;
  }

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

@media (max-width: 759px) {
  .nav-links {
    display: none;
  }

  .brand span {
    font-size: var(--text-base);
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .offer-card {
    width: 100%;
    margin-top: var(--space-4);
  }

  .showcase-panel {
    min-height: 410px;
  }

  .sample-card {
    width: min(64%, 270px);
  }

  .front-card {
    left: 5%;
  }

  .back-card {
    right: 5%;
  }

  .style-label {
    left: var(--space-4);
    right: auto;
  }
}


/* FAQ section */
.faq-section { max-width: 880px; margin: 0 auto; padding: var(--space-12, 4rem) var(--space-6, 1.25rem); }
.faq-section .section-heading { margin-bottom: 1.5rem; }
.faq-list { margin: 0; padding: 0; }
.faq-item { border-top: 1px solid var(--color-border, #e5e7eb); padding: 1.25rem 0; }
.faq-item:last-child { border-bottom: 1px solid var(--color-border, #e5e7eb); }
.faq-item dt { font-weight: 700; font-size: 1.1rem; margin-bottom: .5rem; }
.faq-item dd { margin: 0; opacity: .85; line-height: 1.55; }

/* Related posts module */
.related-posts { max-width: 1200px; margin: 0 auto; padding: var(--space-12, 4rem) var(--space-6, 1.25rem); }
.related-posts h2 { margin-bottom: 1.5rem; }

/* Post-tap landing example section */
.tap-example { max-width: 1200px; margin: 0 auto; padding: var(--space-12, 4rem) var(--space-6, 1.25rem);
  display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-12, 3rem); align-items: center; }
.tap-example .copy h2 { margin-bottom: 1rem; }
.tap-example .copy p  { opacity: .85; line-height: 1.55; margin-bottom: 1rem; }
.tap-example .copy ul { padding: 0; margin: 0 0 1rem 0; list-style: none; }
.tap-example .copy ul li { padding: .35rem 0 .35rem 1.5rem; position: relative; }
.tap-example .copy ul li::before { content: "✓"; position: absolute; left: 0; color: var(--color-primary, #1d4ed8); font-weight: 800; }
.tap-example figure { margin: 0; display: flex; justify-content: center; }
.tap-example .device-frame { display: block; border-radius: 32px; padding: 14px; background: linear-gradient(180deg,#1f2a27,#06120f);
  box-shadow: 0 30px 80px -30px rgba(30,230,182,0.35), 0 4px 20px rgba(0,0,0,0.4); }
.tap-example .device-frame img { display: block; max-width: 320px; width: 100%; height: auto; border-radius: 22px; }
@media (max-width: 720px) { .tap-example { grid-template-columns: 1fr; } }

/* ============================================================
 * Shop / pricing layout (added 2026-05-08)
 * ============================================================ */

.shop-hero { grid-template-columns: 1.1fr .9fr; gap: var(--space-12); align-items: center; }
.shop-hero h1 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); line-height: 1.15; margin-bottom: 1rem; }
.shop-hero p  { opacity: .85; line-height: 1.55; margin-bottom: 1.25rem; max-width: 560px; }
.shop-hero .product-image img { display: block; max-width: 100%; height: auto; border-radius: 18px; box-shadow: 0 24px 70px -28px rgba(0,0,0,0.4); }
@media (max-width: 720px) { .shop-hero { grid-template-columns: 1fr; } }

.shop-banner { max-width: 1200px; margin: 0 auto; padding: var(--space-6, 1.5rem); display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between; gap: 1rem; border-radius: 16px;
  background: var(--color-primary-highlight, rgba(29,78,216,.08)); border: 1px solid var(--color-border, #e5e7eb); }
.shop-banner h2 { font-size: 1.05rem; margin: 0; flex: 1 1 360px; line-height: 1.4; }
.shop-banner .eyebrow { margin: 0; }

.section-lede { max-width: 760px; margin: 0 auto; opacity: .85; line-height: 1.55; }

.pricing-grid-4 { display: grid; gap: 1.25rem;
  grid-template-columns: repeat(4, 1fr); }
.pricing-grid-3 { display: grid; gap: 1.25rem;
  grid-template-columns: repeat(3, 1fr); }
@media (max-width: 1024px) {
  .pricing-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .pricing-grid-4, .pricing-grid-3 { grid-template-columns: 1fr; }
}

.price-card .package-label { text-transform: uppercase; font-weight: 700; letter-spacing: 0.08em;
  font-size: .75rem; opacity: .7; margin-bottom: .25rem; }
.price-card.featured { border: 2px solid var(--color-primary, #1d4ed8); position: relative;
  box-shadow: 0 24px 50px -25px rgba(29,78,216,0.45); }
.price-card.featured .package-label { color: var(--color-primary, #1d4ed8); opacity: 1; }
.price-card .price { display: flex; flex-direction: column; gap: 0.15rem; align-items: flex-start;
  margin: 1rem 0; }
.price-card .price strong { font-size: 1.9rem; line-height: 1; letter-spacing: -0.02em; }
.price-card .price .price-meta { font-size: .85rem; opacity: .65; }
.price-card ul { padding: 0 0 0 .25rem; margin: 0 0 1rem 0; list-style: none; }
.price-card ul li { padding: .25rem 0 .25rem 1.5rem; position: relative; line-height: 1.4; }
.price-card ul li::before { content: "✓"; position: absolute; left: 0; color: var(--color-primary, #1d4ed8); font-weight: 800; }
.price-card .product-buy { margin-top: auto; }

.bulk-note { text-align: center; max-width: 760px; margin: 1.25rem auto 0; opacity: .8; }
.bulk-note a { font-weight: 700; }

.alt-bg { background: var(--color-surface, #f8fafc); border-top: 1px solid var(--color-border, #e5e7eb); border-bottom: 1px solid var(--color-border, #e5e7eb); }
[data-theme="dark"] .alt-bg { background: rgba(255,255,255,0.02); }

/* alt-bg pricing sections must span full viewport width so the band fills edge-to-edge;
   each direct child is then re-constrained to the standard content width. */
.packages.alt-bg {
  width: 100%;
  margin-inline: 0;
  padding-inline: 0;
}
.packages.alt-bg > * {
  width: min(100% - var(--space-8), var(--content-wide));
  margin-inline: auto;
}

/* Custom landing pages section */
.custom-landing { max-width: 1200px; margin: 0 auto; padding: var(--space-12, 4rem) var(--space-6, 1.25rem); }
.examples-gallery { display: grid; gap: 1.5rem;
  grid-template-columns: repeat(4, 1fr); }
.examples-gallery figure { margin: 0; display: flex; flex-direction: column; align-items: center; gap: .75rem; }
.examples-gallery .device-frame { display: block; padding: 10px; border-radius: 28px;
  background: linear-gradient(180deg,#1f2a27,#06120f);
  box-shadow: 0 28px 60px -25px rgba(0,0,0,0.45); width: 100%; max-width: 280px; }
.examples-gallery .device-frame img { display: block; width: 100%; height: auto; border-radius: 20px; }
.examples-gallery figcaption { font-size: .85rem; opacity: .7; text-align: center; }
@media (max-width: 980px) { .examples-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .examples-gallery { grid-template-columns: 1fr; } }

.custom-landing-cta { max-width: 760px; margin: 2rem auto 0; text-align: center; }
.custom-landing-cta p { opacity: .85; margin-bottom: 1rem; }

/* Etsy strip */
.etsy-strip { max-width: 1200px; margin: 0 auto; padding: 1rem var(--space-6, 1.25rem);
  border-top: 1px solid var(--color-border, #e5e7eb); border-bottom: 1px solid var(--color-border, #e5e7eb); }
.etsy-strip p { text-align: center; font-size: .9rem; opacity: .75; margin: 0; }
.etsy-strip strong { font-weight: 800; }


/* ============================================================
 * Shop hub + product page extras (added 2026-05-10)
 * ============================================================ */

/* Hub: two-up range picker */
.range-picker { max-width: 1200px; margin: 0 auto; padding: var(--space-12, 4rem) var(--space-6, 1.25rem); }
.range-grid { display: grid; gap: 1.5rem; grid-template-columns: 1fr 1fr; }
.range-card { border: 1px solid var(--color-border, #e5e7eb); border-radius: 18px; padding: 2rem; display: flex; flex-direction: column; }
.range-card.range-branded { background: linear-gradient(180deg, rgba(29,78,216,0.04), transparent); border-color: rgba(29,78,216,0.25); }
.range-card .range-eyebrow { text-transform: uppercase; letter-spacing: 0.1em; font-weight: 700; font-size: 0.78rem; color: var(--color-primary, #1d4ed8); margin: 0 0 .5rem 0; }
.range-card h3 { font-size: 1.6rem; margin-bottom: .75rem; }
.range-list { list-style: none; padding: 0; margin: 1rem 0 1.5rem; }
.range-list li { padding: .35rem 0 .35rem 1.5rem; position: relative; line-height: 1.4; }
.range-list li::before { content: "·"; position: absolute; left: .5rem; color: var(--color-primary, #1d4ed8); font-weight: 800; }
.range-card .button { margin-top: auto; align-self: flex-start; }
@media (max-width: 800px) { .range-grid { grid-template-columns: 1fr; } }

/* Featured single-card row used by Business Starter Pack */
.packages.featured-row { padding-bottom: var(--space-12); border-bottom: none; }
.featured-card-wrap { max-width: 720px; margin: 0 auto; }
.featured



/* ============================================================
   SHOP CARD REDESIGN — card-based product grid
   ============================================================ */

/* ── Grid: 3 columns ── */
.woo-product-grid ul.products,
ul.products {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.75rem !important;
    float: none !important;
    width: 100% !important;
    margin: 2rem 0 !important;
    padding: 0 !important;
    list-style: none !important;
}
@media (max-width: 900px) {
    .woo-product-grid ul.products,
    ul.products { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 580px) {
    .woo-product-grid ul.products,
    ul.products { grid-template-columns: 1fr !important; }
}

/* ── Product card shell ── */
ul.products li.product {
    background: #ffffff !important;
    border-radius: 14px !important;
    box-shadow: 0 2px 14px rgba(0,0,0,0.07) !important;
    border: 1px solid #e4e4e4 !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    padding: 0 !important;
    margin: 0 !important;
    float: none !important;
    width: auto !important;
    transition: box-shadow 0.2s ease, transform 0.2s ease !important;
    list-style: none !important;
}
ul.products li.product:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.13) !important;
    transform: translateY(-3px) !important;
}

/* ── Product image ── */
ul.products li.product img {
    width: 100% !important;
    height: 200px !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    border-radius: 0 !important;
    margin: 0 !important;
}

/* ── Feature strip ── */
ul.products li.product .woocommerce-loop-product__link::after {
    content: '✓ Free UK delivery   ✓ No app needed   ✓ NFC + QR';
    display: block !important;
    background: #f0faf7 !important;
    border-top: 1px solid #d0ede6 !important;
    border-bottom: 1px solid #d0ede6 !important;
    font-size: 0.68rem !important;
    color: #16a37f !important;
    font-weight: 600 !important;
    text-align: center !important;
    padding: 0.45rem 0.5rem !important;
}

/* ── Title ── */
ul.products li.product .woocommerce-loop-product__title {
    font-size: 1rem !important;
    font-weight: 700 !important;
    color: #111 !important;
    text-align: center !important;
    padding: 0.9rem 1rem 0.2rem !important;
    margin: 0 !important;
    line-height: 1.3 !important;
}

/* ── Price ── */
ul.products li.product .price {
    display: block !important;
    text-align: center !important;
    font-size: 1.45rem !important;
    font-weight: 800 !important;
    color: #16a37f !important;
    padding: 0.1rem 1rem 0.6rem !important;
    margin: 0 !important;
}
ul.products li.product .price ins { text-decoration: none !important; }
ul.products li.product .price del { font-size: 0.85rem !important; color: #aaa !important; font-weight: 400 !important; }

/* ── Add to cart button ── */
ul.products li.product .button {
    display: block !important;
    margin: auto 1rem 1rem !important;
    padding: 0.75rem 1rem !important;
    background: #111111 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 0.9rem !important;
    font-weight: 700 !important;
    text-align: center !important;
    text-decoration: none !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
    width: calc(100% - 2rem) !important;
    box-sizing: border-box !important;
}
ul.products li.product .button:hover {
    background: #16a37f !important;
    color: #fff !important;
}
ul.products li.product::marker { display: none !important; }


/* ── How It Works section — light text for dark background ── */
.rc-how-it-works {
    padding: 1.5rem 0 1rem !important;
}
.rc-hiw-title {
    color: #ffffff !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
    text-align: center !important;
    margin-bottom: 1.5rem !important;
    opacity: 1 !important;
}
.rc-hiw-steps {
    display: flex !important;
    gap: 2rem !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
}
.rc-hiw-step {
    text-align: center !important;
    flex: 1 !important;
    min-width: 160px !important;
}
.rc-hiw-num {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 2.5rem !important;
    height: 2.5rem !important;
    border-radius: 50% !important;
    background: #16a37f !important;
    color: #ffffff !important;
    font-weight: 800 !important;
    font-size: 1.1rem !important;
    margin-bottom: 0.6rem !important;
}
.rc-hiw-step h3 {
    color: #ffffff !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    margin: 0.4rem 0 0.3rem !important;
}
.rc-hiw-step p {
    color: rgba(255, 255, 255, 0.75) !important;
    font-size: 0.88rem !important;
    line-height: 1.5 !important;
    margin: 0 !important;
}


/* ── Shop pagination — horizontal, centred ── */
.woocommerce-pagination {
    width: 100% !important;
    display: block !important;
    margin: 2rem 0 1rem !important;
    clear: both !important;
}
.woocommerce-pagination ul.page-numbers {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 0.4rem !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 auto !important;
}
.woocommerce-pagination ul.page-numbers li {
    display: block !important;
    float: none !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
.woocommerce-pagination ul.page-numbers li::before,
.woocommerce-pagination ul.page-numbers li::marker {
    display: none !important;
    content: none !important;
}
.woocommerce-pagination .page-numbers {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 2.4rem !important;
    height: 2.4rem !important;
    padding: 0 0.75rem !important;
    border-radius: 6px !important;
    border: 1px solid #444 !important;
    background: transparent !important;
    color: #ffffff !important;
    font-size: 0.9rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    transition: background 0.15s, border-color 0.15s !important;
}
.woocommerce-pagination .page-numbers:hover {
    background: #16a37f !important;
    border-color: #16a37f !important;
    color: #ffffff !important;
}
.woocommerce-pagination .page-numbers.current {
    background: #16a37f !important;
    border-color: #16a37f !important;
    color: #ffffff !important;
}
.woocommerce-pagination .page-numbers.next,
.woocommerce-pagination .page-numbers.prev {
    font-size: 1rem !important;
}


/* ============================================================
 * Price-card hover animation (branded-cards / generic-cards)
 * Matches the lift+shadow effect on the shop product grid
 * ============================================================ */
.price-card {
    transition: box-shadow 0.2s ease, transform 0.2s ease !important;
}
.price-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.15) !important;
    transform: translateY(-4px) !important;
}
.price-card.featured:hover {
    box-shadow: 0 12px 36px rgba(29,78,216,0.22) !important;
    transform: translateY(-4px) !important;
}

/* ============================================================
 * Branded gallery — "Cards in the wild" section
 * ============================================================ */
.branded-gallery {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-12, 4rem) var(--space-6, 1.25rem);
}
.branded-gallery-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 2.5rem;
}
.gallery-card {
    margin: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(0,0,0,0.08);
    border: 1px solid var(--color-border, #e5e7eb);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    cursor: default;
}
.gallery-card:hover {
    box-shadow: 0 8px 28px rgba(0,0,0,0.15) !important;
    transform: translateY(-4px) !important;
}
.gallery-card img {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
}
.gallery-card figcaption {
    padding: 0.65rem 1rem;
    font-size: 0.875rem;
    opacity: 0.65;
    font-weight: 500;
}
@media (max-width: 900px) {
    .branded-gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
    .branded-gallery-grid { grid-template-columns: 1fr; }
    .gallery-card img { height: 200px; }
}

/* ── Contact form: logo upload & success notice (v1.6.0) ── */
.contact-form input[type="file"] {
  display: block;
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 2px dashed var(--color-border, #e5e7eb);
  border-radius: 8px;
  background: var(--color-surface, #f9fafb);
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--color-text-muted, #6b7280);
}
.contact-form input[type="file"]:hover,
.contact-form input[type="file"]:focus {
  border-color: var(--color-primary, #1d4ed8);
  outline: none;
}
.form-success {
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-weight: 500;
}