/* =============================================================
   PROLUCA INTERIORS – Brand Landing Page Blocks v3
   Lightspeed eCom — Custom CSS

   Merken:
   - Linteloo        → .pl-lt-*
   - Eichholtz       → .pl-ei-*
   - Grand Interior  → .pl-tg-*
   ============================================================= */


/* -------------------------------------------------------------
   GEDEELDE BASIS
   ------------------------------------------------------------- */

.pl-block *,
.pl-block *::before,
.pl-block *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Vult de content kolom (werkt naast Lightspeed sidebar) */
.pl-outer {
  position: relative;
  width: 100%;
  display: block;
}

/* --- Hero --- */
.pl-hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.pl-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.pl-hero-overlay {
  position: absolute;
  inset: 0;
}

.pl-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 56px 32px 48px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* --- Social proof strip --- */
.pl-proof {
  width: 100%;
  background: #FFFFFF;
  border-bottom: 1px solid #EAEAE8;
}

.pl-proof-inner {
  display: flex;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.pl-proof-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 28px;
  border-right: 1px solid #EAEAE8;
  text-align: center;
  flex: 1;
  min-width: 140px;
}

.pl-proof-item:last-child {
  border-right: none;
}

.pl-proof-value {
  font-family: 'Georgia', serif;
  font-size: 22px;
  font-weight: 400;
  color: #1A1815;
  line-height: 1;
  margin-bottom: 5px;
  display: block;
}

.pl-proof-label {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #9A9590;
  display: block;
}

/* --- USP sectie --- */
.pl-usp {
  width: 100%;
  background: #F7F4F0;
  padding: 40px 32px;
}

.pl-usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #E8E4DE;
  max-width: 1000px;
  margin: 0 auto;
}

.pl-usp-card {
  background: #FFFFFF;
  padding: 28px 24px;
  text-align: left;
}

.pl-usp-icon {
  font-size: 22px;
  margin-bottom: 14px;
  display: block;
  line-height: 1;
}

.pl-usp-title {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #1A1815;
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

.pl-usp-body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: #6E6A65;
}

/* --- Feature bar (donker, onder USP) --- */
.pl-bar {
  width: 100%;
  padding: 0 32px;
}

.pl-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

/* --- Bottom blok: categorie navigatie --- */
.pl-bottom-outer {
  position: relative;
  width: 100%;
  display: block;
}

.pl-cat-section {
  width: 100%;
  padding: 56px 32px 48px;
}

.pl-cat-heading-wrap {
  text-align: center;
  margin-bottom: 36px;
}

.pl-cat-label {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.pl-cat-heading {
  font-family: 'Georgia', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 400;
  line-height: 1.2;
}

.pl-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto 48px;
}

.pl-cat-card {
  display: block;
  padding: 28px 24px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.10);
  transition: background 0.2s, border-color 0.2s;
  position: relative;
  overflow: hidden;
}

.pl-cat-card:hover {
  border-color: rgba(255,255,255,0.28);
}

.pl-cat-card-label {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

.pl-cat-card-title {
  font-family: 'Georgia', serif;
  font-size: 22px;
  font-weight: 400;
  display: block;
  margin-bottom: 16px;
  line-height: 1.1;
}

.pl-cat-card-cta {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pl-cat-card-cta::after {
  content: '→';
  transition: transform 0.2s;
}

.pl-cat-card:hover .pl-cat-card-cta::after {
  transform: translateX(4px);
}

/* --- Showroom strip (onderaan bottom blok) --- */
.pl-showroom-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.10);
}

.pl-showroom-info {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.pl-showroom-meta {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  opacity: 0.55;
}

.pl-showroom-ctas {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Shared responsive */
@media (max-width: 900px) {
  .pl-cat-grid {
    grid-template-columns: 1fr 1fr;
  }
  .pl-usp-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .pl-hero {
    min-height: 460px;
  }
  .pl-hero-content {
    padding: 40px 20px 44px;
  }
  .pl-proof-item {
    min-width: 0;
    width: 50%;
    flex: none;
  }
  .pl-proof-item:nth-child(2) {
    border-right: none;
  }
  .pl-proof-item:nth-child(3) {
    border-top: 1px solid #EAEAE8;
  }
  .pl-proof-item:nth-child(4) {
    border-top: 1px solid #EAEAE8;
    border-right: none;
  }
  .pl-usp {
    padding: 32px 20px;
  }
  .pl-usp-grid {
    grid-template-columns: 1fr;
  }
  .pl-bar {
    padding: 0 20px;
  }
  .pl-cat-section {
    padding: 44px 20px 40px;
  }
  .pl-cat-grid {
    grid-template-columns: 1fr;
    gap: 2px;
    background: none;
  }
  .pl-showroom-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}


/* =============================================================
   LINTELOO
   Cream #F5F0E8 · Charcoal #1C1916 · Brons #8B7355
   ============================================================= */

/* Hero */
.pl-lt-overlay {
  background: linear-gradient(
    to bottom,
    rgba(28,25,22,0.05) 0%,
    rgba(28,25,22,0.25) 45%,
    rgba(28,25,22,0.85) 100%
  );
}

.pl-lt-badge {
  display: inline-block;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #F5F0E8;
  border: 1px solid rgba(245,240,232,0.48);
  padding: 6px 18px;
  margin-bottom: 20px;
}

.pl-lt-title {
  font-family: 'Georgia', serif;
  font-size: clamp(52px, 9vw, 96px);
  font-weight: 400;
  color: #FFFFFF;
  letter-spacing: 3px;
  line-height: 1.0;
  margin-bottom: 18px;
}

.pl-lt-sub {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(15px, 1.8vw, 17px);
  color: rgba(245,240,232,0.88);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 36px;
}

.pl-lt-ctas {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 520px;
}

.pl-lt-btn-hero-primary {
  display: inline-block;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: #F5F0E8;
  color: #1C1916;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  flex: 1;
  min-width: 200px;
  text-align: center;
  line-height: 1;
}

.pl-lt-btn-hero-primary:hover { background: #DDD8D0; }

.pl-lt-btn-hero-secondary {
  display: inline-block;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: transparent;
  color: #F5F0E8;
  padding: 16px 32px;
  border: 1.5px solid rgba(245,240,232,0.48);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  flex: 1;
  min-width: 200px;
  text-align: center;
  line-height: 1;
}

.pl-lt-btn-hero-secondary:hover {
  background: rgba(245,240,232,0.10);
  border-color: #F5F0E8;
}

/* Social proof */
.pl-lt-proof-accent { color: #8B7355; }

/* USP accent */
.pl-lt-usp-accent { color: #8B7355; }

/* Feature bar */
.pl-lt-bar { background: #1C1916; }

.pl-lt-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.pl-lt-feature {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(245,240,232,0.45);
  padding: 16px 22px;
  border-right: 1px solid rgba(255,255,255,0.08);
  flex-shrink: 0;
}

.pl-lt-feature:last-child { border-right: none; }

/* Bottom: categorie sectie */
.pl-lt-cat { background: #1C1916; }
.pl-lt-cat-label { color: #8B7355; }
.pl-lt-cat-heading { color: #F5F0E8; }

.pl-lt-cat-card {
  background: #252018;
  border-color: rgba(245,240,232,0.06);
}

.pl-lt-cat-card:hover { background: #2E2820; border-color: rgba(245,240,232,0.18); }

.pl-lt-cat-card-label { color: #8B7355; }
.pl-lt-cat-card-title { color: #F5F0E8; }
.pl-lt-cat-card-cta { color: #8B7355; }

/* Showroom strip */
.pl-lt-showroom-strip { border-top-color: rgba(245,240,232,0.08); }
.pl-lt-showroom-meta { color: rgba(245,240,232,0.55); }

.pl-lt-btn-strip-primary {
  display: inline-block;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: #F5F0E8;
  color: #1C1916;
  padding: 13px 22px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
  line-height: 1;
}

.pl-lt-btn-strip-primary:hover { background: #DDD8D0; }

.pl-lt-btn-strip-secondary {
  display: inline-block;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: transparent;
  color: #F5F0E8;
  padding: 13px 22px;
  border: 1px solid rgba(245,240,232,0.22);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s;
  white-space: nowrap;
  line-height: 1;
}

.pl-lt-btn-strip-secondary:hover { border-color: rgba(245,240,232,0.55); }

@media (max-width: 640px) {
  .pl-lt-ctas { flex-direction: column; align-items: stretch; max-width: 100%; }
  .pl-lt-btn-hero-primary, .pl-lt-btn-hero-secondary { min-width: 0; width: 100%; padding: 18px 24px; font-size: 13px; }
  .pl-lt-bar-inner { flex-direction: column; }
  .pl-lt-feature { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); width: 100%; padding: 12px 0; text-align: center; }
  .pl-lt-feature:last-child { border-bottom: none; }
}


/* =============================================================
   EICHHOLTZ
   Wit #FFFFFF · Jet #0D0D0D · Goud #C9A96E
   ============================================================= */

/* Hero */
.pl-ei-overlay {
  background: linear-gradient(
    to bottom,
    rgba(13,13,13,0.05) 0%,
    rgba(13,13,13,0.22) 40%,
    rgba(13,13,13,0.87) 100%
  );
}

.pl-ei-badge {
  display: inline-block;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #0D0D0D;
  background: #C9A96E;
  padding: 6px 18px;
  margin-bottom: 20px;
}

.pl-ei-title {
  font-family: 'Georgia', serif;
  font-size: clamp(48px, 9vw, 96px);
  font-weight: 400;
  color: #FFFFFF;
  letter-spacing: 4px;
  line-height: 1.0;
  margin-bottom: 18px;
}

.pl-ei-sub {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(15px, 1.8vw, 17px);
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 36px;
}

.pl-ei-ctas {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 520px;
}

.pl-ei-btn-hero-primary {
  display: inline-block;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: #C9A96E;
  color: #0D0D0D;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  flex: 1;
  min-width: 200px;
  text-align: center;
  line-height: 1;
}

.pl-ei-btn-hero-primary:hover { background: #B8945A; }

.pl-ei-btn-hero-secondary {
  display: inline-block;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: transparent;
  color: #FFFFFF;
  padding: 16px 32px;
  border: 1.5px solid rgba(255,255,255,0.42);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  flex: 1;
  min-width: 200px;
  text-align: center;
  line-height: 1;
}

.pl-ei-btn-hero-secondary:hover { background: rgba(255,255,255,0.08); border-color: #FFFFFF; }

/* Social proof accent */
.pl-ei-proof-accent { color: #C9A96E; }

/* Feature bar */
.pl-ei-bar { background: #0D0D0D; border-top: 2px solid #C9A96E; }

.pl-ei-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.pl-ei-feature {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.38);
  padding: 16px 22px;
  border-right: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}

.pl-ei-feature:last-child { border-right: none; }

/* Bottom */
.pl-ei-cat { background: #0D0D0D; }
.pl-ei-cat-label { color: #C9A96E; }
.pl-ei-cat-heading { color: #FFFFFF; }

.pl-ei-cat-card { background: #161616; border-color: rgba(255,255,255,0.06); }
.pl-ei-cat-card:hover { background: #1E1E1E; border-color: rgba(201,169,110,0.35); }
.pl-ei-cat-card-label { color: #C9A96E; }
.pl-ei-cat-card-title { color: #FFFFFF; }
.pl-ei-cat-card-cta { color: #C9A96E; }

.pl-ei-showroom-meta { color: rgba(255,255,255,0.45); }

.pl-ei-btn-strip-primary {
  display: inline-block;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: #C9A96E;
  color: #0D0D0D;
  padding: 13px 22px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
  line-height: 1;
}

.pl-ei-btn-strip-primary:hover { background: #B8945A; }

.pl-ei-btn-strip-secondary {
  display: inline-block;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: transparent;
  color: #FFFFFF;
  padding: 13px 22px;
  border: 1px solid rgba(255,255,255,0.18);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s;
  white-space: nowrap;
  line-height: 1;
}

.pl-ei-btn-strip-secondary:hover { border-color: rgba(255,255,255,0.50); }

@media (max-width: 640px) {
  .pl-ei-ctas { flex-direction: column; align-items: stretch; max-width: 100%; }
  .pl-ei-btn-hero-primary, .pl-ei-btn-hero-secondary { min-width: 0; width: 100%; padding: 18px 24px; font-size: 13px; }
  .pl-ei-bar-inner { flex-direction: column; }
  .pl-ei-feature { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); width: 100%; padding: 12px 0; text-align: center; }
  .pl-ei-feature:last-child { border-bottom: none; }
}


/* =============================================================
   THE GRAND INTERIOR
   Taupe #EDE8DF · Donker #18140F · Terracotta #A07060
   ============================================================= */

/* Hero */
.pl-tg-overlay {
  background: linear-gradient(
    to bottom,
    rgba(24,20,15,0.06) 0%,
    rgba(24,20,15,0.28) 45%,
    rgba(24,20,15,0.88) 100%
  );
}

.pl-tg-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 18px;
}

.pl-tg-eyebrow-line {
  width: 32px;
  height: 1px;
  background: rgba(237,232,223,0.40);
  flex-shrink: 0;
}

.pl-tg-badge {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(237,232,223,0.72);
}

.pl-tg-title {
  font-family: 'Georgia', serif;
  font-size: clamp(36px, 7vw, 80px);
  font-weight: 400;
  color: #FFFFFF;
  letter-spacing: 1px;
  line-height: 1.05;
  margin-bottom: 18px;
}

.pl-tg-title-italic {
  font-style: italic;
  color: rgba(237,232,223,0.70);
}

.pl-tg-sub {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: clamp(15px, 1.8vw, 17px);
  color: rgba(237,232,223,0.82);
  line-height: 1.7;
  max-width: 580px;
  margin: 0 auto 36px;
}

.pl-tg-ctas {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 520px;
}

.pl-tg-btn-hero-primary {
  display: inline-block;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: #EDE8DF;
  color: #18140F;
  padding: 16px 32px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  flex: 1;
  min-width: 200px;
  text-align: center;
  line-height: 1;
}

.pl-tg-btn-hero-primary:hover { background: #D5CEC5; }

.pl-tg-btn-hero-secondary {
  display: inline-block;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: transparent;
  color: #EDE8DF;
  padding: 16px 32px;
  border: 1.5px solid rgba(237,232,223,0.42);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  flex: 1;
  min-width: 200px;
  text-align: center;
  line-height: 1;
}

.pl-tg-btn-hero-secondary:hover { background: rgba(237,232,223,0.08); border-color: #EDE8DF; }

/* Social proof accent */
.pl-tg-proof-accent { color: #A07060; }

/* Feature bar */
.pl-tg-bar { background: #18140F; }

.pl-tg-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.pl-tg-trust-item {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(237,232,223,0.38);
  padding: 16px 22px;
  border-right: 1px solid rgba(255,255,255,0.07);
  flex-shrink: 0;
}

.pl-tg-trust-item:last-child { border-right: none; }

/* Bottom */
.pl-tg-cat { background: #18140F; }
.pl-tg-cat-label { color: #A07060; }
.pl-tg-cat-heading { color: #EDE8DF; }

.pl-tg-cat-card { background: #211C16; border-color: rgba(237,232,223,0.06); }
.pl-tg-cat-card:hover { background: #2A2218; border-color: rgba(160,112,96,0.35); }
.pl-tg-cat-card-label { color: #A07060; }
.pl-tg-cat-card-title { color: #EDE8DF; }
.pl-tg-cat-card-cta { color: #A07060; }

.pl-tg-showroom-meta { color: rgba(237,232,223,0.45); }

.pl-tg-btn-strip-primary {
  display: inline-block;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: #EDE8DF;
  color: #18140F;
  padding: 13px 22px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
  line-height: 1;
}

.pl-tg-btn-strip-primary:hover { background: #D5CEC5; }

.pl-tg-btn-strip-secondary {
  display: inline-block;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: transparent;
  color: #EDE8DF;
  padding: 13px 22px;
  border: 1px solid rgba(237,232,223,0.18);
  cursor: pointer;
  text-decoration: none;
  transition: border-color 0.2s;
  white-space: nowrap;
  line-height: 1;
}

.pl-tg-btn-strip-secondary:hover { border-color: rgba(237,232,223,0.50); }

@media (max-width: 640px) {
  .pl-tg-ctas { flex-direction: column; align-items: stretch; max-width: 100%; }
  .pl-tg-btn-hero-primary, .pl-tg-btn-hero-secondary { min-width: 0; width: 100%; padding: 18px 24px; font-size: 13px; }
  .pl-tg-bar-inner { flex-direction: column; }
  .pl-tg-trust-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); width: 100%; padding: 12px 0; text-align: center; }
  .pl-tg-trust-item:last-child { border-bottom: none; }
}