/* ============================================================
   WEB DEV LANDING PAGE — Dark theme (tokens + layout)
   ============================================================ */

/* --- DESIGN TOKENS (global palette) --- */
:root {
  --qr-primary: #cbfc02;
  --qr-primary-dark: #a8d400;
  --qr-primary-light: rgba(203, 252, 2, .15);
  --qr-accent: #cbfc02;
  --qr-accent-dark: #a8d400;
  --qr-black: #0b1121;
  --qr-dark: #111827;
  --qr-darker: #030712;
  --qr-white: #fff;
  --qr-grey: #f3f4f6;
  --qr-border: #e5e7eb;
  --qr-green-bg: #f0ffd0;
  --qr-text: #111827;
  --qr-text-muted: #4b5563;
  --qr-text-light: #9ca3af;
  --qr-whatsapp: #25d366;
  --qr-danger: #ef4444;
  --wdlp-bg-elevated: #0b1121;
  --wdlp-bg-deep: #030712;
  --wdlp-eyebrow-muted-bg: #52563f;
  --wdlp-on-dark: #fff;
  --wdlp-on-dark-muted: rgba(255, 255, 255, .7);
  --wdlp-on-dark-soft: rgba(255, 255, 255, .6);
  --wdlp-on-dark-faint: rgba(255, 255, 255, .4);
  --wdlp-border-on-dark: rgba(255, 255, 255, .1);
  --wdlp-border-on-dark-strong: rgba(255, 255, 255, .15);
  --wdlp-surface-glass: rgba(255, 255, 255, .05);
  --wdlp-surface-glass-strong: rgba(255, 255, 255, .08);
  --wdlp-gradient-text-end: #b3e64c;
  --wdlp-glow: rgba(127, 191, 34, .25);
  --wdlp-glow-soft: rgba(127, 191, 34, .15);
  --wdlp-shadow-focus: rgba(127, 191, 34, .1);
  --wdlp-shadow-accent-lg: 0 8px 20px rgba(127, 191, 34, .25);
  --wdlp-shadow-accent-card: 0 10px 24px rgba(127, 191, 34, .2);
  --wdlp-star: #f59e0b;
  --radius-sm: 5px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-full: 999px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, .05), 0 2px 4px -1px rgba(0, 0, 0, .03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, .08), 0 4px 6px -2px rgba(0, 0, 0, .04);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 10px 10px -5px rgba(0, 0, 0, .04);
  --shadow-glow: 0 0 40px rgba(127, 191, 34, .2);
}

/* --- RESET & BASE --- */
html {
  scroll-behavior: smooth;
}

body.web-dev-lp-page {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', 'Inter', sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--qr-text);
  background: var(--wdlp-bg-deep);
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}

.wdlp,
.wdlp *,
.wdlp *::before,
.wdlp *::after {
  box-sizing: border-box;
}

.wdlp {
  width: 100%;
  overflow-x: hidden;
}

.wdlp a {
  text-decoration: none;
  color: inherit;
}

.wdlp img {
  display: block;
  max-width: 100%;
  height: auto;
}

.wdlp-wrap {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.wdlp-hidden {
  display: none !important;
}

/* --- SECTIONS --- */
.wdlp section,
.wdlp .wdlp-sec {
  padding: clamp(44px, 8vw, 60px) 0;
}

@media(min-width:1024px) {

  .wdlp section,
  .wdlp .wdlp-sec {
    padding: 100px 0;
  }
}

.sec-white {
  background: var(--qr-white);
}

.sec-grey {
  background: var(--qr-grey);
}

.sec-green {
  background: var(--qr-green-bg);
}

.sec-dark {
  background: var(--qr-dark);
}

/* --- GRIDS --- */
.wdlp-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.wdlp-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* --- TYPOGRAPHY --- */
.wdlp h1,
.wdlp h2,
.wdlp h3,
.wdlp h4 {
  font-family: 'Poppins', sans-serif;
  margin: 0 0 16px 0;
  line-height: 1.2;
  color: var(--qr-text);
}

.wdlp h1 {
  font-size: clamp(28px, 8vw, 40px);
  font-weight: 800;
  letter-spacing: -.02em;
}

@media(min-width:480px) {
  .wdlp h1 {
    font-size: clamp(32px, 7vw, 44px);
  }
}

 

@media(min-width:1024px) {
  .wdlp h1 {
    font-size: 48px;
  }
}

.wdlp h2 {
  font-size: 28px;
  font-weight: 800;
}

@media(min-width:768px) {
  .wdlp h2 {
    font-size: 36px;
  }
}

@media(min-width:1024px) {
  .wdlp h2 {
    font-size: 44px;
  }
}

.wdlp h3 {
  font-size: 20px;
  font-weight: 700;
}

.wdlp p {
  margin: 0 0 14px 0;
  color: var(--qr-text-muted);
  line-height: 1.65;
}

.text-gradient {
  background: linear-gradient(135deg, var(--qr-accent), var(--wdlp-gradient-text-end));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.sec-p {
  font-size: 16px;
  color: var(--qr-text-muted);
  max-width: 720px;
  line-height: 1.65;
  overflow-wrap: break-word;
}

@media(min-width:768px) {
  .sec-p {
    font-size: 18px;
  }
}

.gr {
  color: var(--qr-primary);
}

.wdlp-text-light {
  color: var(--wdlp-on-dark) !important;
}

.wdlp-sec-lead {
  margin-left: auto !important;
  margin-right: auto !important;
  margin-top: 0 !important;
  color: var(--wdlp-on-dark) !important;
}

.wdlp-quote-success-wrap {
  text-align: center;
  padding: 12px 0 8px;
}

.wdlp-eyebrow--muted {
  background: var(--wdlp-eyebrow-muted-bg) !important;
}

.wdlp-trust-title.wdlp-text-accent {
  color: var(--qr-accent);
}

.wdlp-form-success {
  text-align: center;
  padding: 10px;
  color: var(--qr-accent);
  font-weight: 700;
}

.wdlp-reveal-delay {
  transition-delay: .2s;
}

.wdlp-timeline-step--featured {
  border-color: var(--qr-primary);
  background: var(--qr-green-bg);
}

.wdlp-timeline-step--featured > span {
  background: var(--qr-primary);
}

.wdlp-final-highlight {
  color: var(--qr-accent);
}

.wdlp-final-value-panel {
  background: var(--wdlp-surface-glass);
  border: 1px solid var(--wdlp-border-on-dark);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 32px;
}

.wdlp-final-value-panel h4 {
  color: var(--qr-white);
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  margin-bottom: 16px;
}

.wdlp-final-value-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.wdlp-final-value-list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, .8);
}

.wdlp-final-value-list li span {
  color: var(--qr-accent);
  font-weight: 700;
}

.wdlp-blog-cta {
  text-align: center;
  padding-top: 30px;
}

.wdlp-quote-success-title {
  color: var(--qr-accent);
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 8px;
}

.wdlp-quote-success-note {
  color: rgba(255, 255, 255, .75);
  font-size: 14px;
  margin: 0;
}

.wdlp-modal-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.wdlp-modal-trust-item .wdlp-modal-trust-icon {
  font-size: 20px;
}

.wdlp-modal-trust-copy {
  text-align: left;
  line-height: 1.2;
  font-size: 12px;
}

.wdlp-modal-trust-copy small {
  font-size: 10px;
  color: rgba(255, 255, 255, .3);
}

/* --- EYEBROW --- */
.wdlp-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: var(--qr-black);
  color: var(--qr-primary);
  border-radius: var(--radius-full);
  font-family: 'Poppins', sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 16px;
}

.wdlp-eyebrow.lt {
  background: rgba(255, 255, 255, .1);
  color: var(--qr-accent);
}

/* --- BUTTONS --- */
.wdlp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px !important;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px !important;
  border: none;
  cursor: pointer;
  transition: all .25s ease;
  white-space: nowrap;
  text-decoration: none;
  text-transform: capitalize !important;
  letter-spacing: 0px !important;
}

.wdlp-btn-primary {
  background: var(--qr-primary) !important;
  color: var(--qr-black) !important;
}

.wdlp-btn-primary:hover {
  background: var(--qr-primary-dark) !important;
  transform: translateY(-1px);
  box-shadow: none !important;
}

.wdlp-btn-secondary {
  background: transparent;
  color: var(--qr-primary) !important;
  border: 2px solid var(--qr-primary);
}

.wdlp-btn-secondary:hover {
  background: var(--qr-primary) !important;
  color: var(--qr-black) !important;
  box-shadow: none !important;
}

.wdlp-btn-whatsapp {
  background: var(--qr-whatsapp);
  color: var(--qr-white);
}

.wdlp-btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-1px);
  color: var(--qr-text) !important;
  box-shadow: none !important;
}

.wdlp-btn-white {
  background: var(--qr-white);
  color: var(--qr-dark) !important;
}

.wdlp-btn-white:hover {
  background: var(--qr-green-bg);
  color: var(--qr-text) !important;
  transform: translateY(-1px);
  box-shadow: none !important;
}

.wdlp-btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}

.wdlp-btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

.wdlp-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.wdlp-hero .wdlp-cta-row .wdlp-btn {
  min-width: 180px;
}

.wdlp-final .wdlp-cta-row {
  width: min(420px, 100%);
  justify-content: flex-start;
  margin-bottom: 12px;
}

.wdlp-final .wdlp-cta-row .wdlp-btn {
  flex: 1 1 0;
  min-width: 0;
}

/* --- HERO (DARK — stays dark like diligence) --- */
.wdlp-hero {
  background: var(--qr-black);
  position: relative;
  overflow: hidden;
  padding: 80px 0 100px;
  z-index: 1;
}

@media(min-width:1024px) {
  .wdlp-hero {
    padding: 120px 0 140px;
  }
}

.wdlp-hero .hero-glow {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
  background: radial-gradient(circle at 50% -20%, var(--wdlp-glow), transparent 48%);
  z-index: -1;
  pointer-events: none;
}

.wdlp-hero .wdlp-grid-2 {
  align-items: center;
  gap: 60px;
}

@media(min-width:1024px) {
  .wdlp-hero .wdlp-grid-2 {
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
  }
}

.wdlp-hero h1 {
  color: var(--qr-white);
}

.wdlp-hero p {
  color: var(--wdlp-on-dark);
}

.wdlp-hero .wdlp-sub {
  font-size: clamp(16px, 4vw, 18px);
  margin-bottom: 32px;
  line-height: 1.65;
  max-width: 600px;
}

@media(min-width:1024px) {
  .wdlp-hero .wdlp-sub {
    font-size: 18px;
  }
}

.wdlp-list-inline {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.wdlp-list-inline li {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-full);
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--wdlp-on-dark);
  transition: all .2s;
}

.wdlp-list-inline li:hover {
  background: rgba(255, 255, 255, .15);
  color: var(--qr-white);
}

/* --- HERO FORM (dark glassmorphism) --- */
.wdlp-form {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: clamp(18px, 4vw, 32px);
  box-shadow: 0 24px 64px rgba(0, 0, 0, .5);
  position: relative;
}

.wdlp-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--qr-primary), var(--qr-primary));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.wdlp-form h3 {
  font-size: clamp(20px, 4vw, 24px);
  font-weight: 700;
  color: var(--qr-white);
  margin-bottom: 8px;
}

.wdlp-form>p {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.5;
}

.wdlp-form label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.wdlp-form .wdlp-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.wdlp-form input,
.wdlp-form textarea,
.wdlp-form select {
  width: 100%;
  margin-top: 6px;
  padding: 14px 16px;
  background: rgba(0, 0, 0, .5);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: var(--radius-sm);
  color: var(--qr-white);
  font-size: 15px;
  font-family: inherit;
  transition: border-color .2s;
}

.wdlp-form textarea {
  background: transparent;
  color: #fff;
}

.wdlp-form select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23cbfc02' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px 8px;
}

.wdlp-form select option {
  background: var(--qr-dark);
  color: var(--qr-white);
  font-size: 14px;
}

.wdlp-form select option:first-child {
  color: rgba(255, 255, 255, .65);
}

.wdlp-form input:focus,
.wdlp-form textarea:focus,
.wdlp-form select:focus {
  border-color: var(--qr-accent);
  box-shadow: 0 0 0 3px var(--wdlp-shadow-focus);
  outline: none;
}

.wdlp-form input::placeholder,
.wdlp-form textarea::placeholder {
  color: rgba(255, 255, 255, .4);
}

.wdlp-form small {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, .4);
  font-size: 12px;
}

.wdlp-form .wdlp-btn-primary {
  width: 100%;
  padding: 16px !important;
  background: linear-gradient(135deg, var(--qr-primary), var(--qr-primary))  !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  margin-top: 8px !important;
  color: var(--qr-black) !important;
}

.wdlp-form .wdlp-btn-primary:hover {
  transform: translateY(-1px); 
  color: var(--qr-black) !important;
}

.wdlp-form .form-trust {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--wdlp-on-dark);
}

/* --- TRUST SECTION (dark strip) --- */
.wdlp-trust {
  background: var(--qr-darker);
  padding: 28px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, .05);
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.wdlp-trust-title {
  color: rgba(255, 255, 255, .55);
  text-align: center;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.wdlp-logo-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-bottom: 22px;
}

.wdlp-logo-strip span {
  color: var(--wdlp-on-dark);
  border: 1px solid var(--wdlp-border-on-dark);
  border-radius: var(--radius-md);
  text-align: center;
  padding: 12px 10px;
  font-size: 13px;
  font-weight: 500;
  background: rgba(255, 255, 255, .04);
  transition: all .25s;
}

.wdlp-logo-strip span:hover {
  background: rgba(255, 255, 255, .08);
  transform: translateY(-1px);
}

.wdlp-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.wdlp-stats article {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  transition: transform .3s;
}

.wdlp-stats article:hover {
  transform: translateY(-2px);
}

.wdlp-stats strong {
  display: block;
  color: var(--qr-accent);
  font-family: 'Poppins', sans-serif;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
}

@media(min-width:768px) {
  .wdlp-stats strong {
    font-size: 42px;
  }
}

.wdlp-stats span {
  color: var(--wdlp-on-dark);
  font-size: 13px;
  margin-top: 8px;
  display: block;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em;
}

/* --- PROBLEM/SOLUTION (section uses .sec-grey) --- */
.wdlp-card {
  background: var(--qr-white);
  border: 1px solid var(--qr-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}

.wdlp-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.wdlp-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, var(--qr-primary), var(--qr-primary));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .3s;
  z-index: 0;
}

.wdlp-card:hover::before {
  opacity: 1;
}

.wdlp-card h2 {
  font-size: 24px;
  color: var(--qr-text);
  position: relative;
  z-index: 1;
}

.wdlp-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--qr-text-muted);
  position: relative;
  z-index: 1;
}

.wdlp-card ul li {
  margin-bottom: 8px;
  line-height: 1.55;
}

.wdlp-card-accent {
  border-color: var(--qr-primary);
  background: var(--qr-green-bg);
}

.wdlp-card-accent h2 {
  color: var(--qr-primary-dark);
}

.wdlp-card-accent ul {
  color: var(--qr-text);
}

.wdlp-text-link {
  color: var(--qr-primary);
  font-weight: 700;
  position: relative;
  z-index: 1;
  transition: color .2s;
}

.wdlp-text-link:hover {
  color: var(--qr-primary-dark) !important;
}

/* --- SERVICES + PERSONA TABS (dark panel) --- */
.wdlp-services {
  background: var(--wdlp-bg-elevated);
}

.persona-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 40px;
  width: 100%;
  align-items: stretch;
}

@media(min-width:1024px) {
  .persona-nav {
    max-width: max-content;
    margin-left: auto;
    margin-right: auto;
  }
}

.persona-btn {
  background: var(--qr-white) !important;
  border: 2px solid var(--qr-border) !important;
  border-radius: 50px !important;
  padding: 10px 20px !important;
  min-height: 48px;
  font-family: 'Poppins', sans-serif !important;
  font-size: clamp(13px, 3.2vw, 15px) !important;
  font-weight: 600 !important;
  color: #0b1121 !important;
  cursor: pointer !important;
  transition: all .3s;
  text-align: center;
  line-height: 1.35 !important;
  text-transform: capitalize !important;
  letter-spacing: 1px !important;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.persona-btn:hover {
  border-color: var(--qr-primary-light) !important;
  background: var(--qr-primary-light) !important;
  color: var(--qr-primary) !important;
  box-shadow: none !important;
}

.persona-btn.active {
  background: var(--qr-primary) !important;
  border-color: var(--qr-primary) !important;
  color: var(--qr-black) !important;
  box-shadow: none !important;
}

.svc-panel {
  display: none;
}

.svc-panel.active {
  display: block;
  animation: fadeIn .4s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Service cards grid */
.svc-grid {
  display: grid;
  gap: 24px;
}

@media(min-width:768px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(min-width:1024px) {
  .svc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Service card (diligence svc-card-modern style) */
.wdlp-service {
  background: var(--qr-white);
  border: 1px solid var(--qr-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: flex;
  flex-direction: column;
}

.wdlp-service:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.wdlp-service::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, var(--qr-primary), var(--qr-primary));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .3s;
  z-index: -1;
}

.wdlp-service:hover::before {
  opacity: 1;
}

.svc-blob {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--qr-green-bg);
  border-radius: 50%;
  z-index: -1;
  transition: transform .5s;
}

.wdlp-service:hover .svc-blob {
  transform: scale(2);
}

.svc-icon {
  width: 48px;
  height: 48px;
  background: var(--qr-white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}

.wdlp-service h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--qr-text);
  margin-bottom: 12px;
  line-height: 1.25;
}

.wdlp-service p {
  font-size: 15px;
  color: var(--qr-text-muted);
  margin-bottom: 24px;
  line-height: 1.65;
  flex: 1;
}

.persona-actions { 
  gap: 12px;
  margin-top: auto;
  flex-wrap: wrap;
  text-align: end;
}

.p-action {
  flex: 1;
  min-width: min(100%, 120px);
  padding: 10px 20px !important;
  text-align: center;
  background: var(--qr-grey) !important;
  border-radius: 4px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  color: var(--qr-dark) !important;
  transition: all .2s;
  line-height: 1.3 !important;
  cursor: pointer !important;
  border: none;
  font-family: inherit !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

@media(max-width:380px) {
  .persona-actions {
    flex-direction: column;
  }

  .p-action {
    flex: none;
    width: 100%;
  }
}

.p-action:hover {
  background: var(--qr-primary-light) !important;
  box-shadow: none !important;
}

.p-action-quote {
  background: var(--qr-primary) !important;
  color: var(--qr-black) !important;
  text-transform: capitalize !important;
  letter-spacing: 0 !important;
  width: 50%;
}

.p-action-quote:hover {
  background: var(--qr-primary-dark) !important;
  color: var(--qr-black) !important;
}

/* --- WHY CHOOSE US (dark) --- */
.wdlp-why {
  background: var(--wdlp-bg-deep);
}

.wdlp-mini-card {
  background: var(--qr-white);
  border: 1px solid var(--qr-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all .3s;
  position: relative;
}

.wdlp-mini-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.wdlp-mini-card-icon {
  width: 48px;
  height: 48px;
  background: var(--qr-green-bg);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 16px;
}

.wdlp-mini-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--qr-text);
  margin-bottom: 8px;
}

.wdlp-mini-card p {
  font-size: 14px;
  color: var(--qr-text-muted);
  line-height: 1.65;
}

/* --- PROCESS TIMELINE --- */
.wdlp-process {
  background: var(--wdlp-bg-elevated);
}

.wdlp-timeline {
  position: relative;
  padding: 40px 0;
  margin-top: 40px;
}

.wdlp-timeline::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--qr-border);
  z-index: 1;
}

.wdlp-timeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

@media(min-width:1024px) {
  .wdlp-timeline-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.wdlp-timeline article {
  background: var(--qr-white);
  border: 1px solid var(--qr-border);
  border-radius: var(--radius-md);
  padding: 15px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all .3s;
}

.wdlp-timeline article:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.wdlp-timeline article span {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--qr-primary);
  color: var(--qr-text);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 0 0 6px var(--qr-white), var(--shadow-sm);
  transition: all .3s;
}

.wdlp-timeline article:hover span {
  background: var(--qr-accent);
  transform: translateX(-50%) scale(1.1);
}

.wdlp-timeline article h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--qr-text);
  margin-top: 20px;
  margin-bottom: 8px;
}

.wdlp-timeline article p {
  font-size: 14px;
  color: var(--qr-text-muted);
  margin: 0;
}

/* --- INDUSTRIES (dark) --- */
.wdlp-industries {
  background: var(--wdlp-bg-deep);
}

.wdlp-industries h2 {
  color: var(--wdlp-on-dark);
}

.wdlp-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: start;
  gap: 10px;
}

@media(min-width:1024px) {
  .wdlp-tags {
    justify-content: start;
  }
}

.wdlp-tags span {
  padding: 10px 18px;
  background: var(--qr-white);
  border: 1px solid var(--qr-border);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 600;
  color: var(--qr-text);
  transition: all .2s;
  box-shadow: var(--shadow-sm);
  width: auto;
  flex: 0 1 max-content;
  max-width: 100%;
  text-align: center;
  white-space: nowrap;
}

.wdlp-tags span:hover {
  background: var(--qr-primary-light);
  color: var(--qr-primary);
  border-color: var(--qr-primary);
  transform: translateY(-1px);
  cursor: pointer;
}

/* Healthcare LP alignment tweak */
#healthcare-pharma-lp .wdlp-tags {
  justify-content: flex-start;
}

/* --- CASE STUDIES --- */
.wdlp-cases {
  background: var(--wdlp-bg-elevated);
}

.wdlp-hscroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 0 24px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.wdlp-hscroll::-webkit-scrollbar {
  display: none;
}

.wdlp-hscroll>article,
.wdlp-hscroll>div {
  flex-shrink: 0;
  width: min(280px, 85vw);
  scroll-snap-align: start;
}

@media(min-width:768px) {

  .wdlp-hscroll>article,
  .wdlp-hscroll>div {
    width: 320px;
  }
}

.wdlp-case {
  background: var(--qr-white);
  border: 1px solid var(--qr-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all .3s;
  position: relative;
}

.wdlp-case::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--qr-primary), var(--qr-primary));
  border-radius: 0 0 4px 4px;
}

.wdlp-case:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.wdlp-case h3 {
  color: var(--qr-text);
  font-size: 18px;
}

.wdlp-case p {
  font-size: 14px;
  color: var(--qr-text-muted);
  line-height: 1.65;
}

/* --- TECH STACK --- */
.wdlp-tech {
  background: var(--wdlp-bg-deep);
}

.wdlp-tech-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}

.wdlp-tech-grid>div {
  background: var(--qr-white);
  border: 1px solid var(--qr-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  text-align: center;
  transition: all .3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.wdlp-tech-grid>div:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.wdlp-tech-grid h3 {
  color: var(--qr-text);
  font-size: 18px;
}

.wdlp-tech-grid p {
  font-size: 14px;
  color: var(--qr-text-muted);
}

/* --- PRICING --- */
.wdlp-pricing {
  background: var(--wdlp-bg-elevated);
}

.wdlp-price {
  background: var(--qr-white);
  border: 1px solid var(--qr-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all .3s;
  position: relative;
}

.wdlp-price:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.wdlp-price h3 {
  color: var(--qr-text);
  font-size: 22px;
}

.wdlp-price p {
  font-size: 15px;
  color: var(--qr-text-muted);
}

.wdlp-price a {
  display: inline-block;
  margin-top: 12px;
  color: var(--qr-text);
  font-weight: 700;
  font-size: 12px;
  transition: all .2s;
}

.wdlp-price a:hover {
  color: var(--qr-primary-dark);
}

.wdlp-price .wdlp-price-cta {
  background: var(--qr-primary);
  color: var(--qr-black);
  padding: 6px 20px !important;
  border-radius: 4px !important;
  border: 1px solid var(--qr-primary);
}

.wdlp-price .wdlp-price-cta:hover {
  background: var(--qr-primary-dark);
  color: var(--qr-black);
  box-shadow: none !important;
}

.wdlp-price-featured {
  border-color: var(--qr-primary);
  background: var(--qr-green-bg);
  box-shadow: var(--wdlp-shadow-accent-card);
}

/* --- FAQ --- */
.wdlp-faq {
  background: var(--wdlp-bg-deep);
}

.wdlp-faq-list details {
  background: var(--qr-white);
  border: 1px solid var(--qr-border);
  border-radius: var(--radius-md);
  padding: 0;
  margin-bottom: 12px;
  transition: all .3s;
  overflow: hidden;
}

.wdlp-faq-list details:hover {
  box-shadow: var(--shadow-sm);
}

.wdlp-faq-list details[open] {
  border-color: var(--qr-primary);
  box-shadow: 0 0 0 3px var(--qr-primary-light);
}

.wdlp-faq-list summary {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  padding: 18px 24px;
  color: var(--qr-text);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color .2s;
}

.wdlp-faq-list summary::-webkit-details-marker {
  display: none;
}

.wdlp-faq-list summary::after {
  content: '+';
  font-size: 20px;
  font-weight: 600;
  color: var(--qr-primary);
  transition: transform .3s;
}

.wdlp-faq-list details[open] summary::after {
  content: '−';
  transform: rotate(180deg);
}

.wdlp-faq-list details[open] summary {
  color: var(--qr-text);
  border-bottom: 1px solid var(--qr-border);
}

.wdlp-faq-list details p {
  padding: 18px 24px;
  margin: 0;
  font-size: 15px;
  color: var(--qr-text-muted);
  line-height: 1.7;
}

/* --- TESTIMONIALS --- */
.wdlp-testimonials {
  background: var(--wdlp-bg-elevated);
}

.wdlp-testi-item {
  flex-shrink: 0;
  width: min(320px, 85vw);
  scroll-snap-align: start;
  background: var(--qr-white);
  border: 1px solid var(--qr-border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all .3s;
  position: relative;
}

.wdlp-testi-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 3px;
  background: linear-gradient(90deg, var(--qr-primary), var(--qr-primary));
  border-radius: 0 0 4px 4px;
}

.wdlp-testi-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.wdlp-testi-stars {
  color: var(--wdlp-star);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.wdlp-testi-item p {
  font-size: 14px;
  color: var(--qr-text-muted);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}

.wdlp-testi-item strong {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--qr-text);
}

/* --- BLOGS (white bg) --- */
.wdlp-blogs {
  background: var(--qr-white);
}

.wdlp-blog-grid {
  display: grid;
  gap: 24px;
  margin-top: 40px;
}

@media(min-width:768px) {
  .wdlp-blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(min-width:1200px) {
  .wdlp-blog-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.wdlp-blog-card {
  background: var(--qr-white);
  border: 1px solid var(--qr-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all .3s;
  display: flex;
  flex-direction: column;
}

.wdlp-blog-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.wdlp-blog-card-img {
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--qr-grey);
  color: var(--qr-text-light);
  font-size: 13px;
}

.wdlp-blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.wdlp-blog-card-content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.wdlp-blog-card-content h3 {
  font-size: 15px;
  font-weight: 600;
  color: var(--qr-text);
  line-height: 1.4;
  margin-bottom: 12px;
}

.wdlp-blog-card-content p {
  font-size: 13px;
  color: var(--qr-text-muted);
  flex: 1;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* --- FINAL CTA (dark) --- */
.wdlp-final {
  background: var(--qr-black);
  position: relative;
  overflow: hidden;
}

@media(min-width:1024px) {
  .wdlp-final {
    padding: 80px 0;
  }
}

.wdlp-final .final-dots {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, var(--wdlp-glow-soft), transparent 60%);
  pointer-events: none;
}

.wdlp-final h2 {
  color: var(--qr-white);
}

.wdlp-final p {
  color: rgba(255, 255, 255, .7);
}

.wdlp-note {
  font-weight: 700;
  color: var(--wdlp-star);
}

.wdlp-note--spaced {
  margin-top: 24px;
}

/* --- FLOATING CTA --- */
.wdlp-floating {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wdlp-floating a {
  text-decoration: none;
  color: var(--qr-black);
  background: var(--qr-primary);
  border-radius: var(--radius-full);
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all .2s;
}

.wdlp-floating a:hover {
  transform: translateY(-1px);
  color: #000000 !important;
}
.wdlp-floating a:nth-child(2):hover {
  color: #fff !important;
}

.wdlp-floating a:nth-child(2) {
  background: var(--qr-dark);
  border: 2px solid var(--qr-white);
  color: var(--qr-white);
}

.wdlp-floating a:last-child {
  background: var(--qr-whatsapp);
  color: var(--qr-text) !important;
}

/* --- QUOTE POPUP MODAL --- */
.wdlp-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 17, 33, .7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s ease, visibility .35s;
}

.wdlp-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.wdlp-modal {
  background: var(--qr-black);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 5vw, 40px);
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .6);
  transform: translateY(20px) scale(.97);
  transition: transform .35s cubic-bezier(.16, 1, .3, 1);
}

.wdlp-modal-overlay.active .wdlp-modal {
  transform: translateY(0) scale(1);
}

.wdlp-modal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--qr-primary), var(--qr-primary));
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.wdlp-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 50%;
  color: var(--qr-white);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .2s;
}

.wdlp-modal-close:hover {
  background: rgba(255, 255, 255, .15) !important;
  transform: rotate(90deg);
  color: var(--wdlp-on-dark) !important;
}

.wdlp-modal h3 {
  font-size: clamp(22px, 5vw, 28px);
  font-weight: 700;
  color: var(--qr-white);
  margin-bottom: 8px;
}

.wdlp-modal>p {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  margin-bottom: 24px;
  line-height: 1.5;
}

.wdlp-modal .fg {
  margin-bottom: 16px;
}

.wdlp-modal .fg label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.wdlp-modal .fg input,
.wdlp-modal .fg select,
.wdlp-modal .fg textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(0, 0, 0, .4);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-sm);
  color: var(--qr-white);
  font-size: 15px;
  font-family: inherit;
  resize: vertical;
  transition: border-color .2s;
}

.wdlp-modal .fg input:focus,
.wdlp-modal .fg select:focus,
.wdlp-modal .fg textarea:focus {
  border-color: var(--qr-accent);
  box-shadow: 0 0 0 3px var(--wdlp-shadow-focus);
  outline: none;
}

.wdlp-modal .fg input::placeholder,
.wdlp-modal .fg textarea::placeholder {
  color: rgba(255, 255, 255, .4);
}

.wdlp-modal .fg select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23fff' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
}

.wdlp-modal .fg select option {
  background: var(--qr-dark);
  color: var(--qr-white);
}

.wdlp-modal .modal-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media(max-width:480px) {
  .wdlp-modal .modal-form-grid {
    grid-template-columns: 1fr;
  }
}

.wdlp-modal .btn-form {
  width: 100%;
  padding: 10px 20px !important;
  background: linear-gradient(135deg, var(--qr-primary), var(--qr-primary));
  color: var(--qr-black);
  border: none;
  border-radius: 4px !important;
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all .3s;
  margin-top: 8px;
  text-transform: capitalize;
  letter-spacing: 0px;
}

.wdlp-modal .btn-form:hover {
  transform: translateY(-1px);
  box-shadow: none !important;
}

.wdlp-modal .form-trust {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--wdlp-border-on-dark);
  font-size: 12px;
  color: rgba(255, 255, 255, .5);
}

.wdlp-modal .form-trust.wdlp-modal-trust-footer {
  justify-content: space-around;
  gap: 12px;
  margin-top: 20px;
}

.wdlp-modal .form-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Service name badge in modal */
.wdlp-modal .service-badge {
  display: inline-block;
  background: var(--qr-primary-light);
  color: var(--qr-accent);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: .05em;
}

/* --- SCROLL REVEAL --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all .8s cubic-bezier(.16, 1, .3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* --- TEXT UTILS --- */
.text-center {
  text-align: center;
}

.mb-8 {
  margin-bottom: 32px;
}

.mt-8 {
  margin-top: 32px;
}

/* --- RESPONSIVE --- */
@media (max-width: 1279px) {
  .wdlp h1 {
    font-size: 44px;
  }
}

@media (max-width: 1023px) {
  .wdlp-grid-2 {
    grid-template-columns: 1fr;
  }

  .wdlp-grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }

  .wdlp-tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wdlp-tech-grid > div {
    padding: 16px 12px;
    min-height: 150px;
  }

  .wdlp-tech-grid h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .wdlp-tech-grid p {
    font-size: 13px;
    line-height: 1.45;
  }

  .wdlp-tech-branding .wdlp-tech-grid {
    gap: 10px;
  }

  .wdlp-tech-branding .wdlp-tech-grid > div {
    padding: 16px 10px;
    min-height: 140px; 
  }

  .wdlp-tech-branding .wdlp-tech-grid h3 {
    font-size: 17px;
    line-height: 1.25;
    margin-bottom: 8px;
  }

  .wdlp-tech-branding .wdlp-tech-grid p {
    font-size: 14px;
    line-height: 1.45;
  }

  .wdlp-logo-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .wdlp-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .wdlp-hero .wdlp-grid-2 {
    gap: 40px;
  }

  .wdlp-hero {
    padding: 64px 0 80px;
  }

  .wdlp-timeline-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .wdlp-timeline::before {
    display: none;
  }
}

@media (max-width: 767px) {
  .wdlp-wrap {
    padding: 0 16px;
  }

  .wdlp h1 {
    font-size: 33px;
  }

  .wdlp h2 {
    font-size: 28px;
  }

  .wdlp .wdlp-sub {
    font-size: 16px;
  }

  .wdlp-eyebrow {
    font-size: 9px;
  }

  .wdlp-list-inline {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .wdlp-list-inline li {
    width: 100%;
    text-align: center;
    padding: 8px 10px;
    font-size: 10px !important;
  }

  .wdlp-grid-3 {
    grid-template-columns: 1fr;
  }

  .svc-grid {
    grid-template-columns: 1fr;
  }

  .wdlp-timeline-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    grid-auto-rows: 1fr;
  }

  .wdlp-timeline-grid > article {
    width: 100%;
    min-width: 0;
    height: 100%;
  }

  .wdlp-tech-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .wdlp-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 8px;
  }

  .wdlp-tags span {
    width: auto;
    flex: 0 1 max-content;
    max-width: 100%;
    text-align: center;
    padding: 8px 10px;
    font-size: 10px;
    white-space: nowrap;
  }

  .persona-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .wdlp-blog-grid {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 8px 0 16px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .wdlp-blog-grid::-webkit-scrollbar {
    display: none;
  }

  .wdlp-blog-card {
    flex-shrink: 0;
    width: min(280px, 82vw);
    scroll-snap-align: start;
  }

  .wdlp-form {
    padding: 16px;
  }

  .wdlp-form .wdlp-form-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .wdlp-floating {
    left: 10px;
    right: 10px;
    bottom: 10px;
    flex-direction: row;
  }

  .wdlp-floating a {
    flex: 1;
  }

  .wdlp-btn {
    padding: 10px 20px !important;
    font-size: 14px !important;
  }

  .persona-btn {
    width: 100%;
    padding: 10px 10px !important;
    font-size: 11px !important;
    letter-spacing: .3px !important;
    min-height: 44px;
  }

  .wdlp-faq-list summary {
    font-size: 14px;
  }

  .wdlp-faq-list details p {
    font-size: 13px;
  }

  .wdlp-hero .wdlp-cta-row {
    flex-wrap: nowrap;
    width: 100%;
    gap: 8px;
  }

  .wdlp-hero .wdlp-cta-row .wdlp-btn {
    flex: 1 1 50%;
    min-width: 0;
    white-space: nowrap;
    padding: 10px 8px !important;
    font-size: 13px !important;
  }

  .wdlp-final .wdlp-cta-row {
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
    gap: 8px;
  }

  .wdlp-final .wdlp-cta-row .wdlp-btn {
    width: auto;
    flex: 1 1 50%;
  }

  .wdlp-timeline article span {
    position: relative;
    top: auto;
    left: auto;
    transform: none;
    margin: 0 auto 12px;
    box-shadow: var(--shadow-sm);
  }

  .wdlp-timeline article:hover span {
    transform: scale(1.1);
  }

  .wdlp-timeline article h3 {
    margin-top: 0;
  }
  
  .wdlp-modal>p, .wdlp-modal .fg{
      margin-bottom: 10px;
  }
  .wdlp-modal .modal-form-grid{
      gap: 0px !important;
  }
  .wdlp-modal .btn-form{
      padding: 10px 20px !important;
  }
  .wdlp-modal .fg input, .wdlp-modal .fg select, .wdlp-modal .fg textarea{
      padding: 8px 15px;
      font-size: 12px;
  }
  
  .wdlp-form input, .wdlp-form textarea, .wdlp-form select{
      padding: 8px 15px;
      font-size: 12px;
  }
  
  .wdlp-tech-grid-stratup-growth>div{
      padding: 20px !important;
  }
}